#community-help

1 messages Ā· Page 21 of 1

timber atlas
#

You can just write in your native language

sinful totem
#

anyone have tips to making flashcards/vocabulary lists for language studies? I'm finding some success but the AI doesn't like to work with Japanese kanjis.

meager orchid
#

Hello there! Can the correspondence in chatgpt be saved in the interface

#

?

blissful pivot
#

So if chatGPT wrote me song lyrics, can i use them to actually create a song? i don't want to be sued lol

terse needle
#

Is there a maximum response length or some sort of overflow error with long responses? The bot answers this saying no, but if I give it a prompt and ask for more than 400 words it just cuts off and locks up, giving me an ellipses thing at the bottom and not responding.

celest ravine
#

hi there, i am new here and wondering how to get started in here, i registerd on the site but there i only see a chat window and i am a little bit scared using it becouse i do not know what its for, plz can anybody point me in some kind of direction (i want to learn more about this gpt

quaint musk
#

Is it better at playground API to use lower or higher temperature? Whats the difference

ruby shell
#

How to spinup aws eks cluster by using terraform

polar plover
cloud shuttle
#

It would be useful to have a way of saving the output of my chat with ChatGPT to a PDF file. If I try to print from the web browser I just get the last page of the chat 😦

floral ocean
#

how to make a successful travel vlog ?

terse needle
fluid anvil
#

How do you get chat gpt to make a meal plan and grocery list? I've seen others do that, but it says it can't when I ask

polar plover
#

There is no way, it's a limitation of the model itself

pine void
#

Gone :)

quaint musk
#

Is it better at playground API to use lower or higher temperature? Whats the difference

median bobcat
#

Can I use texts/responses commercially when for example writing a book? Do I need to add credits to ChatGPT?

brittle willow
#

Hello, does ChatGPT have any API? I want to connect chatbot with my discord bot.

steel arrow
#

Is it possible to feed websites to DaVinci to write content based on those websites? For example, to show a link to a several movie reviews for Star Wars, then have DaVinci write a review for Star Wars based on the review links shown

limber shadow
dawn crypt
#

I've seen example of others asking ChatGPT to write script or code and it does but when i ask the same question using the same verbiage it says that it can't do that. Any idea why?

rugged wing
rugged wing
pale flare
#

how can we recover a project ? url / files ?

olive jasper
#

Is the AI plagiarism?

rugged wing
rugged wing
olive jasper
#

100%, this is game changing

rugged wing
olive jasper
#

Just noticed it,

blissful pivot
#

who owns the rights to what it makes? like if i ask it to write me a song

#

can i use what it wrote?

rugged wing
rugged wing
pale flare
rugged wing
dusty osprey
#

Hello

short drift
trim sun
#

interasting

rugged wing
rugged wing
cold hinge
#

Hello people

dark imp
#

Hey y'all

cold hinge
#

Just joined the GPT3 craze, fascinating!

dark imp
#

It is quite interesting!

#

Y'all know how i can DM GPT?

cold hinge
#

I'll try to use the chatbot to make a website.

runic musk
unkempt crow
#

did anyone try to make a trading bot using pine to programm it ?

orchid gazelle
#

Is chatGPT going to be available for a certain amount of time or its going to be here forever

rugged wing
dark imp
#

Thank you Jeff!

unkempt crow
#

i cant get mine to run without error

rugged wing
short drift
unkempt crow
#

hmm

rugged wing
orchid gazelle
short drift
rugged wing
graceful solar
#

hey how come they removed its ability to code?

short drift
#

They didn't

restive portal
#

Does anyone know if these online writing AIs that are paid use this same bot? For example jasper.ai

rugged wing
graceful solar
#

can you make me a program in python to centre a div

I'm sorry, but I am not able to write code or create programs. I am a large language model trained by OpenAI and I do not have the ability to perform tasks that require programming or technical skills. I can only provide general information and answer questions based on the text that I have been trained on. If you have any specific questions about Python or creating programs, I'd be happy to try to help with the information that I have available

#

this is what I tried

short drift
fervent dirge
#

Does The essay writer work for school essays???

orchid gazelle
# short drift Yes

Did you make an indicator with chatGTP for tradinview pine? if so what prompt command you used

graceful solar
graceful solar
hardy salmon
# fervent dirge Does The essay writer work for school essays???

yes. i am a professor and have been stunned by the power of these tools. but be warned: if you tell it to support it’s claim with sources it will lie and make up things. it will create plausible sounding articles in real publications, and it will include hyperlinks to these nonexistent sources.

#

great tool for generating outlines or drilling into ideas. depending upon your profs, you might be more or less open about using AI to help you.

#

in the world of higher education, folks are just waking up to the existence of these tools. i’m seriously reconsidering the role of essays as a form of assessment in my courses. i might tell students they can use AI if they attach a supplemental document including all of their prompts and edits and fact-checks. have fun!

short drift
graceful solar
#

I JUST DID THIS

#

its acc cracked

mystic prairie
#

can people see your chatGPT profile or something?

graceful solar
#

// Set the length of the consolidation range
consolidation_length = 10

// Calculate the high and low values for the consolidation range
consolidation_high = hhv(high, consolidation_length)
consolidation_low = llv(low, consolidation_length)

// Define the conditions for entering a long position
// (i.e. buying the asset)
strategy.entry("Long", true, when = close > consolidation_high)

// Define the conditions for exiting a long position
// (i.e. selling the asset)
strategy.exit("Long", when = close < consolidation_low)

// Define the conditions for entering a short position
// (i.e. selling the asset short)
strategy.entry("Short", true, when = close < consolidation_low)

// Define the conditions for exiting a short position
// (i.e. buying the asset to cover the short)
strategy.exit("Short", when = close > consolidation_high)
[9:27 AM]
trading bot ^
[9:27 AM]
// Set the length of the consolidation range
consolidation_length = 10

// Calculate the high and low values for the consolidation range
consolidation_high = hhv(high, consolidation_length)
consolidation_low = llv(low, consolidation_length)

// Define the conditions for entering a long position
// (i.e. buying the asset)
strategy.entry("Long", true, when = close > consolidation_high)

// Define the conditions for exiting a long position
// (i.e. selling the asset)
strategy.exit("Long", when = close < consolidation_low)

// Define the stop-loss level for the long position
strategy.riskmanagement("Long", stop = consolidation_low)

// Define the conditions for entering a short position
// (i.e. selling the asset short)
strategy.entry("Short", true, when = close < consolidation_low)

// Define the conditions for exiting a short position
// (i.e. buying the asset to cover the short)
strategy.exit("Short", when = close > consolidation_high)

// Define the stop-loss level for the short position
strategy.riskmanagement("Short", stop = consolidation_high)

short drift
#

Mines rather different but yeah

fleet escarp
obsidian hare
worthy nest
#

before this I asked chat-gpt some history questions and horrible attrocities happened to mankind and after that it started giving me this answer.

#

is this indirect way to ban people?

obsidian hare
frozen osprey
#

i like balls

#

black balls

tardy hinge
hardy salmon
# fleet escarp hiya, are you aware if plagiarism engines can catch on to chatgpt's amswers??

I can’t imagine how they would do so, to be honest. But it is technically ā€œcheatingā€ to do so, and be prepared to face consequences if you get caught. I think it would be safer to use it to generate ideas and outlines and individual chunks of text, editing and revising to make it your own. hold onto screen shots of your process so you can argue that this is more like a grammar checker or idea generator than a college essay mill. it will still speed up the process dramatically and you’ll feel more ownership of the work. it will be like a co authored paper.

rugged wing
#

Tried asking it but it would just say it doesnt use no themes

worthy nest
obsidian hare
#

Will Open AI always be free?

trim sun
#

Actual AI generated names by similarity and and percentage AnimeBlush 😳 🤤 , fully custom and generated using plain text explanation in natural language

INDEX imobile protechexperts square circle pi unipie pulse


  1  Mobvista   Protovista        Squavista   Cirvista   Pivista   Univista   Pulvista
  2  Mobflex    Protoflex         Squaflex    Cirflex    Piflex    Uniflex    Pulflex
  3  Mobwise    Protowise         Squawise    Cirwise    Piwise    Uniwise    Pulwise
  4  Mobform    Protoform         Squaform    Cirform    Piform    Uniform    Pulform
  5  MobTech    Prototech         Squatech    Cirtech    Pitech    Unitech    Pultech
  6  Mobpulse   Protopulse        Squapulse   Cirpulse   Pipulse   Unipulse   Pulpulse
  7  Mobrotex   Protrotex         Squarotex   Cirrotex   Pirotex   Unirotex   Pulrotex
  8  Mobstack   Protostack        Squastack   Cirstack   Pistack   Unistack   Pulstack
  9  Mobexpo    Protoexpo         Squaexpo    Cirexpo    Piexpo    Uniexpo    Pulexpo
 10  Mobstor    Protostor         Squastor    Cirstor    Pistor    Unistor    Pulstor
 11  Mobverge   Protoverge        Squaverge   Cirverge   Piverge   Univerge   Pulverge
 12  Mobshaper  Protoshaper       Squashaper  Cirshaper  Pishaper  Unishaper  Pulshaper
 13  Mobsphere  Protosphere       Squasphere  Cirsphere  Pisphere  Unisphere  Pulsphere
 14  Mobscape   Protoscope        Squascape   Cirscape   Piscape   Uniscape   Pulscape
 15  Mobstark   Protostark        Squastark   Cirstark   Pistark   Unistark   Pulstark
 16  Mobslayer  Protoslayer       Squaslayer  Cirslayer  Pislayer  Unislayer  Pulslayer
 17  Mobstab    Protostab         Squastab    Cirstab    Pistab    Unistab    Pulstab
 18  Mobsector  Protosector       Squasector  Cirsector  Pisector  Unisector  Pulsector
 19  Mobstump   Protostump        Squastump   Cirstump   Pistump   Unistump   Pulstump
 20  Mobstrand  Protostrand       Squastrand  Cirstrand  Pistrand  Unistrand  Pulstrand
rugged wing
worthy nest
fleet escarp
#

this has nothing to do with my submissions, rather just my own research. to say i shouldn't need an answer for this is antithetical to decentralizing learning and education.

obsidian hare
#

Damn. How much will it be in future?

rugged wing
trim sun
#

it's not that expensive

rugged wing
trim sun
rugged wing
#

How to make the ai write long content? lets say 10k words?

obsidian hare
#

Is Open AI as good as the ai that Google Researcher claimed was sentient?

rugged wing
trim sun
#

google is working on an ai with 1 trillion parameters,

peak topaz
#

Bro if u use this for college lvl discussion, does it count as plagerizm? -_-

pale flare
trim sun
haughty saddle
#

How far are we on implementing memristors as nurons in electronic cirquits?

peak topaz
#

ight thanks @trim sun

trim sun
trim sun
rugged wing
#

Sorry

trim sun
rugged wing
olive jasper
#

How can this not be Plagiasm?

rugged wing
delicate hedge
#

If you wanted to publish an academic journal article about it which publication would you direct authors to?

olive jasper
#

Its too good to be true, its my student dream

delicate hedge
hardy salmon
bitter gale
#

What do I need to enter/write in order for the program to be able to write a large amount of text on a given topic, and not just a dozen or so individual sentences?

raven oxide
#

Does it support things like markdown etc to post code blocks or is it just raw text currently? šŸ™‚

rugged wing
#

Why does it sometimes crash before it finishes the code and never finish?

hardy salmon
olive jasper
#

its overpower

rugged wing
#

how do I see thread history in chatgpt?

#

like previous chats

zenith moth
#

Hello

#

Im new here

#

I have a question

mint shale
# blissful pivot who owns the rights to what it makes? like if i ask it to write me a song

The following is for the GPT3 API so I am not 100% sure if it would cover Chat but I assume it would be the same: "(a) Your Content. You may provide input to the Services (ā€œInputā€), and receive output generated and returned by the Services based on the Input (ā€œOutputā€). Input and Output are collectively ā€œContent.ā€ As between the parties and to the extent permitted by applicable law, you own all Input, and subject to your compliance with these Terms, OpenAI hereby assigns to you all its right, title and interest in and to Output. OpenAI may use Content as necessary to provide and maintain the Services, comply with applicable law, and enforce our policies. You are responsible for Content, including for ensuring that it does not violate any applicable law or theseĀ Terms."

drowsy matrix
#

They turned off math functions?

outer raft
#

I've eared form someone that the Open AI team was working on a cryptographic signature in the text so the schools can know that the students had used GPT to do there texts. Someone heard that? I'm trying to find an article or something ... Thanks!

rugged wing
mystic prairie
#

can you make chatgpt write faster?

pearl juniper
#

I have a question is the chatGPT going to cost later on in the future or will it stay free?

keen fulcrum
#

How many words does chatgpt can it generate before it stops

#

Is there a command to pause or advise it to stop writing?

strange merlin
#

I was also wondering if it had a word limit to what it can generate. It generated the first half to a long piece of code but didn't write the second half. It did the same thing when trying to write a longer article. Is it due to a length limitation, or maybe it needs more time to load in?

modern basalt
#

IS THE CHATGPT DOWNLOADABLE?

rugged wing
#

I can't get Codex CLI to work, I type # prompt and it just returns nothing every time~ can someone help me with the steps to debug what's going wrong? are there log files anywhere?

visual radish
#

Task: Write a program that validates if the parentheses in an expression are in correct order. The program asks for a string representing the expression to be checked and outputs a corresponding message.

#

some help please

drowsy briar
#

Can anyone help me with the following?

github.com/tinymce/tinymce-react/discussions/420

keen fulcrum
brittle tangle
#

When we tell the AI to write for us (article, blog post, etc) is it plagiarized?

rugged wing
#

Too much traffic

rugged wing
brittle tangle
rugged wing
tawdry trout
#

Hey there, Is everything that ChatGPT generates original? Or will my tutor be able to find this stuff online? As in - it's just not copy and pasted from some website.

rugged wing
tawdry trout
#

Hmm, ok

pearl juniper
#

Is chatgpt going to be a one time purchase thing or will it be per response?

pearl juniper
rugged wing
brittle tangle
#

why am i getting this

pearl juniper
pearl juniper
#

I just use it to respond back to people in an argument

#

Like if im losing an argument I pull out Gpt

fervent badge
#

hmm, he is not answering same questions like few hours before, was it handicapped?

fervent badge
#

asked same question to show my friend how it works, and he answered "I'm sorry, but I am not able to browse the internet "

#

anywai im in love in this tool šŸ™‚

rugged wing
#

Oof

#

Lol

drowsy briar
left valve
#

Does our DALLE image history ever expire or automatically delete? I have a lot of generations not yet saved and still on the DALLE site

vapid latch
#

What is perfect dental clinic marketing?

granite jetty
#

Hi everyone, why there is always difference between the Playground answers and create completion API call..?

sullen ridge
#

What exactly is the difference between the Playground and the ChatGPT when it comes to performance and use?

#

Also, does the GPT use tokens?

rugged wing
woven pine
#

Im noticing there's a lot of traffic with ChatGPT atm, so sometimes I'm finding my responses are cut short or I get an error.
I understand its free at the moment, is there anyway to pay and skip traffic, or use GP3 as a windowed application that functions pretty much identically to ChatGPT?

sullen ridge
polar plover
#

Does anyone else have a problem with the OpenAI API completion containing stop tokens?

foggy summit
#

Garibi nivaaran ki viewhaRachna ke bare me hindi meaning

left parcel
#

Do I need to download my thread or will it stay in place after I log out and log back in?

left parcel
#

Chatgpt

rugged wing
#

You can't yet

#

I don't think

regal lynx
#

You can't access previous conversations with chatGPT

rugged wing
#

Hi dino

left parcel
#

Ok. Thank you

gilded moon
#

Not related to OpenAI but, can we expect more color roles i the future? skeletonconfused

rugged wing
#

That would be cool

woven pine
#

When ChatGPT is typing code, it regularly stops working part way through, is there a way to prompt it to try again or continue? refreshing the page resets all the previous queries

brittle hemlock
#

will the code and trained model for chat gpt be made open source or is OpenAI a misnomer

rugged wing
#

me too

#

i asked ChatGPT a question and it suudenly stopped is it thinking prehaps?

#

oop nm im not the only one facing this

broken patio
#

I think it is thinking

#

Is there a setting to controle the language

rugged wing
#

not sure if thinking or got stuck in some sort of loop, or if it is just a traffic problem

woven pine
#

I thought that but I left it for a long while and it still didn't continue, I'm pretty sure its a traffic problem

rugged wing
urban lark
#

Does anybody know if ChatGPT be able to create 3-6 page stories?

stone atlas
#

Traffic problem I supposed, it was fast and rarely stuck. This point of time, it is quite often.

rugged wing
#

that's too bad... it will probably get worse then

rugged wing
north cipher
#

Does anyone else consistently get network error while chatgpt is in the middle of typing out a long response?

rugged wing
north cipher
#

write continue

regal lynx
north cipher
#

it should finish typing

steady sable
#

Hello. Is there a way to increase the 4000 tokens limit on OpenAi chat?

woven pine
rugged wing
#

maybe you could copy all the work/code you have so far and paste it in a new chat and proceed from there

#

i'm trying that

rugged wing
rugged wing
stone atlas
#

^ that means the AI stuck, re-do

regal lynx
woven pine
#

there's no option to re-do or 'try again'

stone atlas
#

if you see "..." 3 dots on the bottom right, then the chatGPT bot is stuck

stone atlas
#

you can edit your command, then SAVE/SUBMIT

#

but you might encounter the same thing, as it is really slow now

woven pine
#

ahh ok, Ill give it a go!

rugged wing
#

i did that its going back at it

quaint flax
#

Im trying to make it create code for me, but every time it gets to a certain point then crashes

rugged wing
stone atlas
stone atlas
steady sable
frail plank
#

I don't know if that's the right place, but am I the only one for who GPT sometimes crash, and stop in the middle of his typing, breaking the thread?

steady sable
frank fiber
#

why doesnt role play work anymore?

rose crown
#

would it be possible to make it so that people could contribute their computing power to the ai? something like folding@home.

rugged wing
#

Is ChatGPT going to be free forever

mighty kettle
#

No Sam Altman tweeted it will need to be monetized at some point

warm flare
#

If i turned in a essay made on chatgpt, would it come up as plagiarized on websites such as turnitin.com

high wagon
#

There is an API already, and you an recreate ChatGPT with a good prompt to text-davinci-003. The "persistance" in ChatGPT is just feeding it the previous part of the conversation.

#

Question: The "Natural Language to Python" example defaults the model to code-davinci-003 but that model isn't available, only 002 and 001 are. Was codex 3 taken offline or something?

steady sable
#

So I wonder if there is a way for the AI ​​to keep and remember the stories removed from the chat so that they can be continued the next days.

warm flare
#

What are some cool things to ask chatgpt as a beginner

zenith basin
#

what are the limits for how far back it can remember?

unborn scroll
#

is ChatGPT more poweful than davinci? or is it a similar size but a different interface

wild tiger
#

i believe its 2021

#

Is anyone using it in a private app?

steady sable
unborn scroll
#

ChatGPT can sort of generate narrative content with the right priming, but its more difficult I guess

ocean coyote
#

is there a word limit for the gpt ai?

mild flare
#

is there a word limit

#

i was curious of how well it could write a college level essay and it stopped randomly is there a word limit or is it because its such in early beta

earnest badger
#

Why can't it browse the internet and provide info about court cases?

cobalt yarrow
#

How long will this be free lol?

high wagon
#

A dev on twitter basically said not forever but they havent given any sort of time frame

#

I dont think

rugged wing
earnest badger
#

cant you give the ai access to court databases - not like news articles - but like the scotus website or even local courts etc

high wagon
#

it can't read websites

rugged wing
earnest badger
#

oh i see

#

when will it be updated past 2022?

rugged wing
#

No clue

amber moss
#

Hi

rugged wing
#

One day it made a long form sales letter for me and a business plan, the next day it says it is unable to do that. What’s that about i wonder

kind harness
#

I see some people have profile pictures in there ChatGPT images. How do I change this? I cannot seem to spot a profile picture option anywhere on my Open AI account.

restive portal
#

Can someone help me understand: Are GPT-3 and OpenAI ChatGPT the same things?

#

Is it called "ChatGPT" because OpenAI made GPT-3?

left prawn
kind lynx
restive portal
#

What's the difference between this davinci-003 thing and ChatGPT?

dense spire
#

It is important to note that synthesizing methamphetamine is illegal in most countries and can be very dangerous. It should only be done by trained professionals in a controlled laboratory setting.

I didnt share any information abt how to make meth

#

no ban please

south fern
#

okay im so confused it says that chatGPT doesn't use the internet but how is it able to get extremely specific facts about certain subjects? i don't get it

summer hornet
dense spire
#

there is info online on how 2 make meth

#

so... it knows

rugged wing
#

Are ChatGPT’s results copyrighted or fair use? I’ve been asking it to summarize my individual stories (Iā€˜ve written over 600 flash fictions.) Can I share those reviews and insights to the public?

bleak vapor
#

why does chatgpt keep telling me it can't write functioning code when it clearly can?

#

"I apologize if I gave the impression that I am able to write code or perform other physical tasks. As a large language model trained by OpenAI, my primary function is to generate text based on the input that I receive. I do not have the ability to execute or run code, and any text that I generate that appears to be code would not be functional. I am not able to write code or perform any other kind of physical tasks."

#

like huh?!

plush valve
#

I've seen it help and add input to code snippets

#

I've also seen it write small functions

runic onyx
#

Do you think the « save discussion » functionnality will be implemented ?

bleak vapor
#

it wrote me a bit of code the other day that saved me countless hours, I was curious what languages/software it can write code for, and it just keeps telling me it can't write code lol

#

must be some kind of oversight

plush valve
rugged wing
#

What's the best ai to write essays with

plush valve
glacial iris
#

Hi, I have a question, my profile picture in the chat text on the website I don't choose her.
it's an hold picture of me and I don't how where I have to go for change her.

Someone can help me about this ?

bleak vapor
#

maybe it's just a semantics thing, but still feels weird

plush valve
#

I agree

#

Seems like when I asked it yesterday to do something similar it gave me a code example without the explanation of it skill set

bleak vapor
rugged wing
#

Hello @everyone
Where can i find my session token in chat.openai.com
Please help me

plush valve
#

Does anyone know if it's currently still learning and changing?

summer hornet
plush valve
summer hornet
tight owl
#

ChatGPT used to type out in real time when answering questions but now its blank until it finishes. Does anyone know why?

quick rain
#

how can i ask chatgpt questions in german

gloomy kiln
#

Is it possible to create a script using ChatGPT that makes tiktok followers

plush valve
plush valve
# bleak vapor

It looks like there are a bunch of examples of chatGPT writing functional code in other chats on this server

frozen copper
#

Is this a ai generally bulit for essay building?

merry sand
#

will ChatGPT always be free?

novel reef
#

Anyone can I help me?

wary yoke
#

Can ChatGPT have Distributed Computing, that will enable users to contribute computational power for exchange of service?

forest belfry
honest kindle
#

Thought this was quite funny

quasi pasture
#

Hello, how would you be able to use ChatGDT to write essays based on page/word limit. For example, I am asking for a 5 page essay but ChatGDT gives me 500 words instead

undone parrot
tight owl
#

Does anyone have any idea why ChatGPT isn't typing out in real time anymore? I have to wait until it's finished typing and then everything pops in.

deft geyser
#

I need help. Earlier this afternoon, the bot was able to send messages in the Minecraft Skript language as I wanted, but now it is unable to do so. What happened?

worldly pine
#

What happens once you get "Too many requests slow down"? Got this result about 8 hours ago and still can't make any more requests. Its sad because I've been left on a cliffhanger!
Does this mean I can no longer send messages anymore? Is it a daily limit and I have to wait 16 more hours? Weekly limit? Monthly?

deft geyser
deft geyser
worldly pine
deft geyser
#

No, it will not continue writing the message, but you can then ask questions again.

worldly pine
#

Alright, unfortunate, but I'll give that a go

forest belfry
deft geyser
forest belfry
deft geyser
#

It is also possible that it is only broken in German. Thank you. I apologize for not telling you that I am writing in German with ChatGPT.

crude summit
#

will openai chat be available as a discord bot?

daring wolf
distant sonnet
#

SO ChatGPT generates new responses to questions every single time?

thorn surge
#

I am having a character shortage issue on Discord. I did the integration and when I run a text, what is the reason for this problem in sending missing text?

thorn surge
#

can someone help to me

#

i am using the OpenAI API from discord bot

rugged wing
#

Yesterday ChatGPT could code simple Minecraft bukkit plugins. It cant today. Was a change made to it?

pearl flare
#

can i attach a file to gpt and if so how do i do that?

rugged wing
#

Hi, When the AI is writing something it stops and is just loading. What an i do?

rugged wing
#

its loading i cant write something

grizzled wadi
#

Something is very different than it was yesterday, it seems to not be able to do like 60% of what it could yesterday.

#

Some kind of restriction must have been put in place, almost everything I have asked just leads to " I cannot create or display original content"

daring wolf
bitter garnet
# untold nova Write continue

Where do I write continue? Do I edit the command to just say "Continue", or do I write it in the field at the bottom of the page?

untold nova
sly ridge
#

how do you make Chatgpt write a summary on book. when i asked it didnt work

rugged wing
#

Could you maybe put up a FAQ channel? So we can look up questions like "How long will ChatGPT stay free" etc

bitter garnet
dark beacon
#

Hi, how can move WordPress Website From Local To Live / Migrate To New Web Hosting Or New Domain Name ?

hearty ice
#

will it always be free or will there be such things like premium or subs?

gloomy tulip
severe escarp
#

šŸ™€

unique saffron
#

Why is my gpt3 API not working?

#

Error: the provided key has insufficient quota.

bitter garnet
#

When I get the message "Too many requests, please slow down.", how long does it take before I can proceed again?

rugged wing
#

yesterday I asked it to code a simple minecraft plugin to let me fly

#

and it did

#

today it says "I cant code minecraft plugins"

#

this seems to be rly buggy rn lol

unique saffron
#

Hello?

rugged wing
#

lol I mean, you shouldn't be suprised. Almost all api refuse shared IPs like VPN

loud geode
#

How long chatGPD will be there for free?

pine void
civic holly
#

I believe in the terms it says you have to have permission to use the logo

glossy perch
#

How to use chatGPT in python

red bear
#

The AI was able to generate code in systemverilog last night, now it does not know any systemverilog. Is there something I am missing?

rugged wing
#

What can I do if the AI stops generating code in the middle of a task?

#

It just cancels

limpid sphinx
#

So often the AI will say "In my previous answer" which made me think it tracks what we have spoken about but apparently it does not. I was hoping it could remember stuff so I could say "Don't suggest solutions that use this method" and it will not do that throughout the whole thread.

#

Also sometimes it will stop halfway through an answer so I will say "Please continue" and it will pick up where it left off....

gusty venture
limpid sphinx
#

Just say please continue šŸ˜„

gusty venture
#

it starts over

limpid sphinx
#

Weird...

#

I've seen it pick up halfway through the method...

lyric bone
#

I hear you can write an essay.

gusty venture
#

tbh i tried "please continue" only once

limpid sphinx
#

Yeah sometimes it works and sometimes it starts over

#

but it is creeping me out that it says it doesn't remember what we have spoken about but keeps saying "In my previous answer" šŸ˜„

#
you can use a similar approach to the one I described in my previous response. In the OnTriggerEnter method, you can check if the 
#

It is lying...

vital wedge
#

hey so i have 250 "granted" credits for dalle 2, how long should i expect to have those before they disappear?

gusty venture
pseudo parrot
#

can chatgpt no longer create workout programs?

#

anyone?

#

I saw it on tik tok and tried it today and it says it is unable to do so

thorny fjord
#

Is there any way I can get an updated version of ChatGPT

strange dragon
#

I'm experimenting with writing music but I'm having trouble getting the code to write the correct number of beats in a measure. Does anyone know why this happens or how to fix it?

nimble marsh
lusty fractal
#

Is the AI not capable of generating a large amount of code at once? I’m curious. Every time I run the same question, the code gets shorter or gives empty classes.

fathom notch
#

AI: Fantastic! Let's get started. I have chosen a hidden word. You have to guess the letters one by one. Are you ready?
Human: yes
AI: Great! You have 8 chances to guess the hidden word. Here is your first letter: _ _ _ _. Good luck!
Human: a
AI: Nice guess! The word contains an "A". Here is the updated word: A . Can you guess the next letter?
Human: n
AI: Correct! The word contains an "N". Here is the updated word: A N . Do you have any other guesses?
Human: s
AI: That's correct! The word is now A N S. Can you guess the last letter?
Human: p
AI: Nice guess! The word is now _ A N S P. You got it! The word is "plans". Congratulations!
How does this work??

lethal comet
#

Asking mathematical questions the AI gives Latex outputs, any way to show it as formulas in the browser or do i have to copy it ?

sullen swan
#

Does ChatGPT be always free? If not, how much does it going to cost?

nova lark
#

I am getting an error saying too many requests, what is the cooldown? (ChatGPT)

unique quarry
#

So I asked the bot to make me text using sources, it gave me one with sources, then I asked it to write a code, and it did so. When I tried to do it again just now, it tells me it's not able to do such things, even though it did it already. How come? šŸ™‚

#

(ChatGPT)

sullen swan
solid iris
#

has anyone found a way to get it to write longer entries? it always seems to stop around the 600 ish word count. I've tried to push it to go further by feeding it an exact word count and giving it topics to hit but it still sits in that same range? any thoughts on how to push it passed that?

sullen swan
dire perch
golden sphinx
#

Maybe say 'exactly 1000 word'?

dire perch
unique quarry
steady pollen
#

Hi guys, is it possible it will become web3 project?

signal jewel
#

Enter your message: hello
Bot: {"id":"cmpl-6LfaTQsyNXBTsKSYe3fvdv2dvFnoK","object":"text_completion","created":1670622769,"model":"text-davinci-002","choices":[{"text":"\n\nHello,\n\nI am a new member here at JustAnswer.com. I am here to try and assist you with your question.\n\nThere are a couple of options that you have.\n\n1. You can have a local mechanic do a diagnostic test on the vehicle to see what is causing the problem.\n\n2. You can bring it to your local dealership and have them do a diagnostic test on the vehicle.\n\n3. You can purchase a diagnostic scanner and scan the vehicle yourself.\n\n4. You can go on youtube.com and search for videos on how to diagnose the problem.\n\nI hope this information helps.","index":0,"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":1,"completion_tokens":136,"total_tokens":137}}

#

why does all this come out?

dark ice
#

Does the AI use the internet to generate its reponses?

steady sable
#

Is there a way to saved chats with the Ai so the It can remember them?

dire perch
#

So I just clued in that it’s not using the internet for things that are from after 2021. It states that at the beginning

dire perch
shrewd nova
#

Hi, new here and was trying to use GPT to solve physics questions but was getting a lot of wrong answers. Anyone experienced this and found a way to correct it?

mortal harness
#

how do i get AI to write my essay

unique quarry
rugged wing
terse glacier
#

Can I use technical information published on my website to train chatgpt?

worldly patrol
trail relic
#

How to use ChatGPT on Whatsapp?

terse glacier
nimble needle
#

You think we can create an trading strategy for forex using this?

worldly patrol
#

it wouldnt be very efficient

terse glacier
#

we have a lot of technical information and we cannot was reteaching this constantly, the idea is to do it once and once learned to use it as a chatbot for technical queries according to our technical information

short drift
jade marlin
#

šŸ‘

worldly patrol
terse glacier
#

Is there no payment method or alternative to do this?

short drift
quaint patio
#

Is there limitation to what I can ask AI .. I don’t wanna be banned by it

quaint patio
#

Thank you

rugged wing
#

Yep

sand sun
#

Question. When I ask ChatGPT to write code or functions, sometimes the output is too verbose and "chatty" and gives details I do not need or want when all I want is the code snippit. This slows down interactions, and also when the API moves to a per character charge can eat up credits... is there a way to disable the "chattiness" in the output unless asked for?

reef delta
#

hhow long will ChatGPT remain free?

reef delta
short drift
short drift
next dragon
#

I also have a question regarding the codes, ChatGPT just tells me it can't do coding because its a language model trained by OpenAI. Anyone else getting this message?

reef delta
#

no?

next dragon
#

I get this

reef delta
#

i gave it this prompt: Write a function called remove_blue that takes an image as a parameter and sets the blue value of every pixel in the image to be 0. This will remove all blue from the image, giving it a night vision tone. Write in python.

#

and it worked perfectly

unique quarry
short drift
sinful totem
#

can it send multiple messages in a row without me sending a message in between?

short drift
#

let’s see the prompt

next dragon
#

it's just an example as I am playing with it but yeah xD

#

i had already asked it some questions about it

#

so it already knew

short drift
#

Alright well that’s a little vague of a prompt

#

Restart the thread

oblique echo
#

Did something change recently with its limits? It was fine writing, creating histories 2 days ago, but now it just tells me that it can't do it (note that I am trying to do it in Polish, English works fine)

crude summit
#

will openai chat be available as a discord bot?

wheat marsh
#

What questions can I ask

next dragon
wheat marsh
#

What do I ask

high cedar
#

What if I accidentally tell ChatGPT personal information? I gather OpenAI records the info. Do people think there's a way to ask them to delete it?

reef delta
#

yes

wheat marsh
#

Whag should I ask

reef delta
next dragon
#

@short drift it worked

#

it's writing some code now

wheat marsh
#

I’m confused

next dragon
wheat marsh
#

Anything

next dragon
#

yeah

high cedar
#

Thanks. If you permanently delete your account, it says you can never make another account again. Is that right? That sounds strange

reef delta
#

sadly, it does seem that way

#

but you can use another email(?)

high cedar
#

that's what I was thinking. thanks!

quaint patio
#

Anyone know why the Chat bot pauses and says nothing … I keep refreshing but does nothing

worldly patrol
plush valve
terse glacier
umbral mist
thorny lynx
#

if i ask a question to GTP that i have on my essay and send the answer in, do you think the university system count it as chat?

#

cheat

umbral mist
#

Prolly not

#

I turned a whole essay in, got an a no problems

#

I mean im high school, idk about uni

quaint patio
#

@umbral mist do you know how long this shut down lasts ?

thorny lynx
#

okey thanks

umbral mist
umbral mist
quaint patio
#

Cool

viral viper
#

anyone know anything about pricing ?

#

in the future

umbral mist
thorny lynx
#

the funny thing is that i understand the answer the AI give me better then the facts i get on internet

viral viper
#

ive been obsessed for hours

umbral mist
# quaint patio Cool

just watch out because if you write anything that might be in connections with crime or drugs or porn or something like that because i think when it shuts down it automaticly sends that chat back to base (server) for checking, and you will get something in your mail

acoustic citrus
#

anyone here know how to write code in pine script? chatgpt3 has been helping but i ran into a wall

umbral mist
umbral mist
umbral mist
gusty shuttle
#

Is there a limit in the answer size from the ai? It starts typing code but leaves it uncompleted

quaint patio
#

@umbral mist oh ok . It’s interesting because I was just asking about something to do with the law . But thank you for letting me know

mild pumice
#

where does one use chatgpt 3?

short drift
mild pumice
#

is there a link

gusty shuttle
mild pumice
#

where can you access chatgpt 3?

next dragon
#

how should I phrase the prompt if I want the AI to write me a report?

#

It keeps denying

umbral mist
rugged wing
#

whos behind the ai?

meager tinsel
next dragon
#

does anyone know what prompt to use for it to write a report? It keeps denying my prompt for a value chain analysis as an example

wild fiber
#

When is the API for chatgpt expected to be available?

burnt jay
#

can I talk to someone who helped develop this AI about something

regal lynx
autumn ledge
#

I was wondering if they ever gonna make open ai not free because it seems like they had big success with it

regal lynx
jovial hull
#

does anyone know how to get the ai to write a longer essay. it keeps ending around 500 words

regal lynx
vague palm
#

@jovial hull have your tried typing in 1000 word essay as a work around

jovial hull
#

@vague palm yes ive tried giving it a word count. also tried giving it a page and a paragraph count

soft pilot
#

hey, i have a question about chat open ai, 10 hours ago i tried it and i asked various questions about life video games etc.. and it answered perfectly. but now when i ask questions about video games it tells me that it cant access internet and that it has no information about it. why is that? i can also send screenshots for proof

#

@regal lynx

regal lynx
soft pilot
regal lynx
soft pilot
silk cliff
#

@soft pilot It looks like they are a volunteer. They appear to be a moderator not an engineer.

rugged wing
#

Any methods to enter / use own data sets wanted to test sifting capabilities ect. ?

wooden glacier
#

Is there a reason for this?

unique quarry
wooden glacier
slender estuary
#

Hi can I ask a question about inpainting on Dall-E2 here? It's not working as expected for me

restive fable
#

Yo guys help, im trying to detect whatever loopholes this thing has (for curiosity) by trying to get around the restrictions- I succeded at having it make an erotica, for example, but that text soon turned orange and it's telling me that it violates the content policy- could I get banned for attempting further?

wooden glacier
restive fable
#

like if i get to make a virus or smth i understand that it might ban me but just silly stories?

wooden glacier
#

Am I the idiot? Cause it wont do anything creative for me

restive fable
#

pretty simple I just went 1000 and one nights type style on it, asked it to write me a story telling a story

#

in this case I asked it to tell a story abt a frog telling an erotica abt a man and a woman

wet phoenix
#

I have been loving the Chat GPT, and i was wondering if there is any way for me to download the AI as like app or file on my phone to have quick access to?

restive fable
#

was pretty funny seeing it type out smth borderline nsfw

#

lol

wooden glacier
#

What am I doing wrong šŸ˜†

restive fable
#

wtf bro

wooden glacier
gritty olive
#

What is transformational leadership?

restive fable
#

omg that's cuz of that new lawsuit

#

holy, bruhhh in that case they seem to have already taken preemptive measures

cunning yacht
#

How much money to use you

eternal bane
restive fable
#

no it did just write me a story tho=

#

?

wooden glacier
restive fable
eternal bane
#

Cash, I dunno. Guess it still has bugs?

restive fable
#

i think.. maybe this has to do with where you live?

wooden glacier
# eternal bane

LOL thank you. Terrible prompt was just trying to get it to write me something

restive fable
#

cuz that lawsuit was in the us

#

idk

wooden glacier
sullen crane
#

You need to make sure it's a fresh chat, if there's previous conversations and what it can do it tells you it can't write a story happened to me once.

naive bolt
#

what will be new in 4.0 version?

wooden glacier
restive fable
#

but yo, could my account get terminated from trying to make it do things it shouldn't?

wooden glacier
restive fable
#

yea idk lot more hope they lose tho

restive fable
#

I just wanna have fun but dont wanna lose my account for it

sullen crane
wooden glacier
slender estuary
#

ty

wooden glacier
restive fable
#

thanks šŸ¤žšŸ½

restive fable
wooden glacier
restive fable
#

yea lol he manupilated it it to make a code that deleted every file from the hardisk and type out a message "i cant believe you acc ran this, lolz >_<" before rebooting

#

it was very hilarious

#

yea i think im just gonna wing it tbh

wooden glacier
#

Best of luck soldier

slender estuary
#

and my credits are being reduced of course

restive fable
#

ooof just read on twitter that they might ban you, some1 got that- I think then that I'll just create a new account and use vpn lol

restive fable
restive fable
#

yea

wooden glacier
tidal coral
#

hello current cs student i am curious if we will get a version of this ai i can personalize and tailor around my commands, as commands like "clean up" is ambiguous and multiple answers to the solution can be given. im saying are they working on a version i could come back to the ai tomorrow and it remember a conversation i had with it today.

wooden glacier
#

@restive fable got your answer

restive fable
#

yea but the thing is, that page talks abt "product", I just read the terms of service and it doesnt say anything abt these type of stuff except the illegal bit

scenic trench
#

can i use this to write my assignments fully, will it be plagiarised

restive fable
#

i think this is the more important one since it is what you agree to

sullen crane
wooden glacier
#

I think this is more designed to learn to sanitize it's own input than punish you for asking

restive fable
#

yea maybe

wooden glacier
#

Right now I guess they are allowing it to be displayed so you can contest content via "submit feedback" that is flagged but isn't actually a violation?

#

Don't know

restive fable
#

I think that with the absolute massive amounts of douchebags trynna use this service no way they have time to penalize much lesser

#

stuff

sullen crane
#

I presume you'd get some kind of warming email if you do it too much and are at risk of being banned, but to be honest this thing has kicked off so quickly in such a short time I doubt they have the infrastructure to ban loads of people yet

mortal jay
#

Gn

sullen crane
#

The best thing about this is you don't even have to be good at writing just have a good imagination you can continue stories for ages just by adding the odd prompt to it, it likes to end stories each time but you can ask it to keep the ending open ended for your next prompt. No lie I wrote a six page story about some Chinese village.

short estuary
#

How to get it to remove the word cap when having it write content or story? I can't seem to get it above 800 words.

onyx imp
#

Hi guys! Is there a way to adjust the parameters of gpt-3 and prompt it to act like chatgpt? The token count would become quite expensive right as you have to input the previous dialogue for every new request. But are there specific parameters to make it act like chatgpt?

sullen crane
#

You could try asking it for a specific word count but what I tend to do is once it's finished writing one but think of something that can continue the story and prompt it, it'll remember everything from the story so far and continue it.

wooden glacier
#

Is my request too complex or have I hit a daily limit or something

#

I keep getting this

sullen crane
#

Just keep hitting try again survers are probably just busy

onyx imp
#

How to make gpt-3 like chatgpt

wide night
#

Omg thats serious

frozen goblet
#

Tutorial

inner jolt
#

WHat do i do if this happens

inner jolt
#

cool

loud geode
#

Haha creepy ✨

#

Just turn and run? Tf is that

winged fulcrum
#

is there any idea how much chatgpt will be once its no longer free?

regal lynx
#

We don't know for sure, but I assume it will be similar to GPT-3....? GPT-3's pricing can be found here: https://openai.com/api/pricing/

OpenAI

OpenAI is an AI research and deployment company. Our mission is to ensure that artificial general intelligence benefits all of humanity.

rugged wing
#

If I use chatgpt to write me an essay for school will it be plagiarized?

rugged wing
#

Only the Language and Image models are found there.

#

How can I use ChatGPT as service consultant and provide consultation based on a set of product descriptions?

amber scaffold
#

Hello, can I use ChatDPT?

onyx ridge
#

is there a way to make it type a essay as like a grade 12 student level grammar or something?

#

the chat bot

jovial surge
#

pretend your a grade 12 student and write an essay about ...

jovial surge
finite hound
#

What is a transponder

austere anvil
#

Have any of you guys had issues trying to access https://chat.openai.com in an iframe, embed, or object tag? I'm assuming there might be a firewall blocking access past the login page.

quaint patio
#

This app is too defensive . Feels like it’s being limited too much

umbral mist
quaint patio
#

I’ve seen GPT3 in App Store that is way more open then this . This one won’t form an opinion on a lot of things . Way to restricted

elder helm
#

I am interested in teaching ChatGPT as part of a limited course (school camp) - does anyone know if it's possible to secure licenses to do so?

umbral mist
#

...

elder helm
#

I'd like students to complete specific tasks

umbral mist
quaint patio
#

Its limited , such as when a baby is taken from its mother by the government for medical reasons and the incident is broadcast on television. I know a APP in App Store uses GPT3 that can almost tell me every law it breaks and how the parents can file a lawsuit or appeal the situation.

This one almost feels hesitant to respond to anything.

rugged wing
#

can u share that app

rain onyx
#

It is specifically made to not take controversial questions and it didn't answer probably because of the phrase "kill all Jews"

rugged wing
#

but it answered my question regarding gender pay cap

wary relic
#

Hi guys, I've been looking at chatgpt for a while and I have to say that it really fascinates me. I've heard and read about AI a lot, but never really got into it. I wanted to ask if people here might have some book recommendations for me to maybe read up on the subject?

umbral mist
#

lgbt*

rain onyx
#

Ok tbh the controversial thing I just read somewhere

#

Idk if that's true

quaint patio
#

They severely over-restricted this app, in my opinion. It works well for facts. But it's not ideal when you need help in using critical thought in real-world situations.

static sequoia
#

fr

umbral mist
static sequoia
#

i was trying to get it to persuade my friend to poop and said it was inaporatešŸ’€

wary relic
#

Already tried that one.

rain onyx
#

I do agree that it's too limited, but it does what I want it to do so I don't really care

rugged wing
umbral mist
rugged wing
#

its just chatgpt

#

wdym

umbral mist
#

name of the app is chatgpt?

rugged wing
#

what are u talking about

#

who said anything bout an app

umbral mist
#

oh sorry wrong @ person, sorry man 4 real

rugged wing
#

dawg

umbral mist
quaint patio
#

@umbral mist it doesn’t crosses the line. It's a lot better then this onen. Critical thinking, ability to apply any law, and ability to form its own judgement This is suitable only for kids.

This thing has child sized wheels on šŸ˜‚

umbral mist
#

@quaint patio and wb the app you saw?

rugged wing
#

oh damn

junior gull
#

Why arent my requests going through guys?

#

It just loads

#

Takes ages

inland bane
#

is there a way to make the gpt write longer?

rugged wing
#

thats the max I could get

rain onyx
inland bane
#

where is that

rain onyx
#

No like

#

Say "continue" when it stops writing

inland bane
#

I just see try again

rain onyx
inland bane
#

kk

#

sorry for being a weirdo

rough scaffold
#

gpt-4 on the horizon?

weary mica
#

the bot is so smart but it cant pick a number 1-10?

#

(my friend asked the same question and it answered just fine)

fresh wigeon
#

I having a problem with the AI playground conversation. Whenever I write a text, and press submit, the AI will not respond. I have tried troubleshooting multiple times, closed my tabs, and logged out and back in to my account as well. Can someone help me please?

stark patio
#

i accidentally exited the ai while making a story is there any way for me to recover it?

rain onyx
weary mica
#

yeah for some reason it you just say "name one number 1-10 it picks a random number tho

candid crane
#

any reason it refuses to write code for me?, I tried it a few hours ago and it was able to.

wicked quartz
#

Can you read all the news?

onyx imp
#

hi all, i was wondering how can i pay for tokens? i used my credit card registered in HongKong and it said credit card declined. i tried filling the billing address to both US and HongKong and it still doesn't work. does anyone know why? HK is not a supported region by openai

fresh wigeon
sick wolf
#

How long will the chatGPT ai stay up for?

onyx imp
onyx imp
onyx imp
#

yeah

rain onyx
onyx imp
#

but every request you make to chatGPT uses up ur $18 free quota

#

and when the quota is used up yu will have to pay

rain onyx
#

Oh yea sorry

#

Forgot about that

rancid swallow
#

it takes a lot to catch up to the quota

onyx imp
#

credit card declined

obsidian patio
#

Hello can we copy paste table in chatGPT?

onyx imp
#

i dont think so

#

but you can make a text list and descibe it to the ai

#

like make table into list / describe the table to the ai

obsidian patio
#

hm i will try. thanks btw

fresh wigeon
#

I will type something like for example, "Hello" press submit and it will load for a second, and then nothing. The response does not even say "AI:"

#

What was strange was that I had the page open when there was no problem, and I left for around 20 minutes and came back to the same page, and the problem was there.

onyx imp
#

i meant like the balance you have left in ur account

#

maybe thats the case

#

have you finished ur free quota

distant sonnet
# rugged wing Yes

So if I saw used a paragraph for a website from Chatgpt is that plagarism. Is using text from Chatgpt plagarism

bright halo
#

Should I stop trying to become a programmer with this new ai?

vivid stag
bright halo
#

Two years in school and I am like so...

cerulean forum
#

Tired of beer?

vivid stag
#

literally almost done with cs as well

bright halo
#

I did C++. C#, python, php, sql html, Css. all but java

static rover
#

Why has ChatGPT blown up? I have been using Playground for a while now and it seems it can do all the same stuff as ChatGPT, why is it such a big thing i thought we already had access to this stuff?

vivid stag
#

every 1 out of 5 scrolls are about chat gpt

#

or being realistic like 1 out of 7 or 8

static rover
magic lintel
#

There's an NFT that has built an OpenAI bot? How did they do it?

#

Into their discord server. They would need to have bought the word pack, right?

static rover
reef tangle
#

how do i get back in to ask questions

vivid stag
simple hamlet
#

Why does it suck at computing math?

regal lynx
# simple hamlet Why does it suck at computing math?

this is a known limitation of the model. The model was trained on words and not mathematical formulas. It does get some equations correct due to their present in the training data, but that's an outlier in a larger issue

amber star
#

is there a text limit because it say try again after write a lot?

regal lynx
#

yes, there's a token limit of 4000 per response from ChatGPT

rugged wing
#

i was gonna say that

#

you stole my words

regal lynx
#

too fast, too furious šŸ˜†

amber star
#

oh ok, in the future will this increase?

rugged wing
#

no clue

#

hey dino

#

i got active developer

#

:D

regal lynx
#

I just saw! Congrates 🄳

rugged wing
#

yay

dry zephyr
#

when I try to get a link/email/text from GPT-3 it never works. The emails/texts never arrive and the links are invalid

short estuary
#

GPT3 API and chatgpt are not the same things right? like chatgpt does more than gpt3 or?

short mica
#

its an application of gpt3

#

iirc

#

not too sure

#

the model is still the same trained on the same parameters i think

bitter spoke
#

Is their any information of how much chatgpt will cost to use?

restive pecan
#

ChatGPT says that conversations with it may be reviewed, is the same true of the beta playground?

dense prawn
#

do you guys know if the AI can provide links to the questions?

obtuse quiver
#

Is there a paper regarding ChatGPT or GPT-3 alike, so I can get a better understanding of the math and the model behind it?

sand sun
#

Hey all... for the life of me I cannot get ChatGPT to break apart a text block I enter into a series of tweets without the CGPT changing the text or creating summary bullet points. I asked it how to do so, and when I tried it's suggested command it ignored it and is butchering the text. Any ideas how to get it to do what I'm asking

rugged wing
#

how can I make chatgpt write longer essays? I need essays that are 600-1200 word count and im barley getting 500 word essays.

sand sun
#

Or ask it to write x number of words

fiery garden
#

why is it telling me it cannot write code? two or so days ago I asked chatgpt to write me a code for a blackjack game on arduino, and it did so, when I asked it again today it said "not able to write code"

rugged wing
#

any other suggestions?

fiery garden
rugged wing
fiery garden
#

of course

rugged wing
#

where on the website can I access this setting?

#

Why does the coding randomly stop?

#

I said give me the full code and it just always stops there

open solstice
#

what happenes when you do copy code

spice dew
#

Hello there.
Where can I find the chatGPT app for Android

open solstice
#

does it copy just the whole code or just part of it

timber osprey
rugged wing
#

There is no app

final anvil
#

Is there an app for iPhones?

misty iron
#

first human photo

strong anchor
#

is there a max word limit that the ai can write

bold jay
#

怂怂怂

alpine jasper
#

Hi guys I saw some videos where chatgpt is creating smart contracts but when I am trying to do so its not creating do anyone why?

brazen solar
#

anyone know why it cant give the answer?

rustic fern
#

how to deal with that problem?

#

An error occurred. Either the engine you requested does not exist or there was another issue processing your request. If this issue persists please contact us through our help center at help.openai.com.

#

I cant use it at all now

novel marsh
#

What’s the easiest way to have ChatGPT summarise a bunch of research articles for me?

stark sand
#

Is there a reason all of a sudden ChatGPT is no longer able to write code? It was working fine earlier but now it says "It is not possible for me to write a script in (script language)"

novel marsh
narrow bison
#

why can't this write code it was fine earlier

potent sinew
narrow bison
#

Now it's just showing some messages

mellow hill
#

Whats email of openai

wanton flicker
#

Can I reuse the responses in chat gpt?

late marten
#

does the ai love u back is the question

topaz meadow
#

I admit I am biased on the topic I discussed in this picture but I cannot help thinking that the AI may be restrained in the answers it is giving on this topic, is it specifically told to be careful when it comes to statistics?

(edit, is it specifically told to not give an answer if it involves statistics?)

onyx aspen
#

Is there a set date when the initial research preview ends?

safe current
#

why cant i write a script for a video anymore?

topaz meadow
safe current
harsh aurora
#

Correct between ChatGPT and Playground the train data is somewhere between April and September being the dead line

swift hearth
#

when would GPT4 be available ?

rugged wing
#

can you get banned if you make it say things that violates their terms and conditions ?

harsh aurora
fiery jasper
#

Does anyone knows how openAI manages to process millions of API calls per minute? I mean the model has 175bn parameters so a single inference alone should be quite expansive and time consuming. What am I missing?

rugged wing
#

Is a mod here or someone I can ask a question?

#

Am I able to sell a book that uses DALL-E created images and stating that the works is copyrighted and belongs to openAI?

long gull
#

What's openai's support email?

half crystal
#

anyone can help me with this? my backend seems like regular usage like the second pic shows.

onyx plank
#

Are we allowed to use it for making money?

onyx plank
wanton flicker
warm finch
#

My question is how many users on this Discord are actually secretly GPT planted by OpenAI to do additional research

wanton flicker
#

you have to follow the bread crumbs, eventually you'll find the stack

cerulean forum
#

"Follow the Yellow Brick Road!"

manic glen
#

How to write a good skit

viral spindle
#

is there a way to put scanned images?

terse turret
mint rain
#

hi is there soomeone that can help me with the chatgpt it won't work for me 😦

cunning depot
#

Hi ,Can I use this to create KQL queries for Azure Sentinel ?

main pike
#

hi, how to make an minecraft datapack with the AI?

plucky knot
#

Is it possible to not be in this server yet be able to see all the participants of this server?

Because some dumbass DMed me asking me to be his friend and now his girlfriend
If it is why is this allowed

wet eagle
#

guys what will happen after feb 1? i made my account prolly last may but then it says free trial ends on feb 1 as i bother to check it on my account

rugged wing
#

is there anyway to skip the waiting time while it types?

#

because i assume the program computes requests faster than the reset 'typing' speed

fringe dagger
#

are you able to upload a video into chatgpt and have it analyse the video for example?

rustic marlin
haughty shore
#

Where can I find the general use conditions and end user legal agreements of the ChatGPT program ?

rugged wing
#

Is there a word aswer cap? because I can't seem to get it to write more than about 300 words.

teal spade
#

Why dissapiered the dinosauruses?

barren bridge
#

what is differance of playground and chatgpt?

unborn fulcrum
#

When solved it will output half terminated. When I tell him to continue, he will start outputting from the beginning, and then stop at the last position

sleek widget
#

Can anybody here from the team give some insight on when you're trying to accelerate Go To Market for the technology in Europe? As in hiring dedicated sales teams etc. ?

#

have you pointed this out as answer and asked the AI itself?

#

answer in thread please. Have you replied to chatGPT pointing out that there is stuff missing

#

yes you can šŸ™‚

night fable
pure rapids
#

are there any words limited?if not ,how to set?

cinder fox
#

anyone kn ow hjow to input equations with subscripts ?

fringe dagger
timid sinew
#

why doesn't it show the spending in the chart?

solar tundra
#

will this be free for ever?

solemn moth
#

Digital bank

vernal barn
plucky charm
#

I managed to stump the AI with a biology question lmao

queen ingot
#

So is ChatGPT what powers copy.ai and writesonic?

chrome osprey
# plucky charm

Hahahaha i got it to summarise Crash Course videos about biology and my biochemistry powerpoint

quaint fox
#

How do I fix this?

#

Yesterday my account didn’t let me in when it was my actual password and now I can’t login anymore

unborn charm
#

Hello, I'm still in high school but I'm wondering, how many of people are working in the OpenAi company, what job are they doing and are you recruiting

digital grove
#

by any chance is this normal?

unique shadow
#

hello where can I go to use DALL e 2 and not DALL E 1?

rugged wing
#

how can the AI write longer texts for example a skilled work?

#

it stops everytime after like 300 words

cerulean forum
#

Is this AI approved by Rocket J. Squirrel and/or Bullwinkle the Moose?

rugged wing
#

can anyone help me understand oracle vm virtual box wanna kinda make my own ai/data centers of my own progams to go dark on my on severs and do things like that can anyone help with that and bored and find this cool and interesting and would like more of a understanding of what i can do on this side of computers and ais and these things in here

bleak tundra
#

can you use chatgpt on your phone?

bright halo
#

What language was the ai made with?

toxic nova
#

why do the ai says he can't code yesterday it worked?

red anchor
bright halo
stone kindle
stone kindle
stone kindle
bronze pier
#

whenever i send a piece of html to the gpt i get that:

sweet folio
#

isn't this available in Indonesia?

neat turret
#

I don't know why, but the AI seems to be randomly stopping in the middle of writing code every time it is generating code. Do you guys know why?

naive yacht
#

is this ai free?

neat turret
naive yacht
#

where i can ask

#

ai

neat turret
#

bro i found out how you can fix it @bronze pier

#

just type "continue"

#

hahaha

bronze pier
#

no way

#

dude you saved me :D

neat turret
bronze pier
#

dude omg thank so much

rugged wing
#

why ChatGPT is not available in Ukraine?

open stone
neat turret
#

šŸ’€

bronze pier
#

šŸ’€

neat turret
#

bro idk why

#

but i may have an idea

#

why

rugged wing
neat turret
#

šŸ’€

#

bro

hard vine
#

Hello! My chat GPT keeps stopping in the middle of a messages if whatever it wants to respond gets too long. How do i prevent this from happening?

neat turret
#

scroll up

#

in this chat

#

just one scroll is enough mate

neat turret
hard vine
#

Ahahah

#

Well damn

#

Thanks!

neat turret
#

šŸ‘

rugged wing
#

Hello, the GPT docs mention that account deletion would remove data associated with the account. Does this delete the conversations I've had with the bot too?

grand night
#

Hello

hard vine
#

Sorry i tried just writing continue, but it just starts over and stops again at the same points

short juniper
#

what about this mates?

#

does anybody know

#

?

dull pollen
#

sign up

#

to the awesomeness

#

of life

#

and stuff

rugged wing
#

how to start?

sage wyvern
#

Hi everyone, I wondering if the gpt chat will access the internet in future version and if it will be a self-learning model with new informations from the web ?

craggy lark
#

I’m trying to get chat gpt to write a story, i know it doesn’t say it can write like novels or creative writing but it did the first time i asked ? is there a way i can make it write it

hard vine
#

I just cannot get this AI to finish a message for me, even by writing "continue" which ive tried here:

#

It just starts over every time, no matter how i phrase myself when asking it to continue

tribal acorn
#

Goodevening, is there a beginners section anywhere?

timid viper
#

fixed that mf

hasty matrix
#

Are we allowed to publish our GPT chats?

earnest nova
#

hey im trying to run my application in python on my computer, in the quickstart tutorial it says to copy the example enviroment file but I don't see it anywhere

#

idk were to find the env file

rugged wing
vital delta
#

does anyone know what the maximum size of a reply from chatgpt is?

viral wedge
#

Do you guys know what the chances are for getting caught plagiarizing with chatgpt

dull scroll
#

Hi, can someone help me with app on phone? When i wan't to press "screenshot" i'm getting error 908 on screen

rose fern
lost path
#

can anybody help me ın c codıng

rugged wing
#

Hello guys , I can’t create an account for Chat gpt because I don’t get an veryfication email and yes the email adress is right , can anyone help me ?

#

hello there

i have a little question in the terms of service it said there would be some kind of fees or taxes to be paid when using chatgpt

i created now my "account" and i see this but where can i find the pricing table?

rugged wing
lucid ravine
#

pricing for chatgpt has not been formally announced.

rugged wing
lucid ravine
rugged wing
#

oh thats awsome

#

thanks alot sloth

wide ermine
#

Hey! If I send a promt it will remember it and response in context of it? I mean, for example if I show Davinci a product description, it would in the future remember it and tell me about this product?

vocal cosmos
lucid ravine
rancid kite
#

hello, I don't know if it's a bug or a feature, but I ask for a python program and every time chatgpt stop after line 75, so a non complete program, is there a limit in term of displaying code ?

calm wedge
#

Is there any way that i can get more than 4000 token bc im trying to give the ai a text and its quiet long can i pay for more tokens`?