#How much code we talking about Because

8 messages · Page 1 of 1 (latest)

minor hare
#

The code starts out low like 50 to 100 lines and then a request to update over a few more questions. Bam! the result it starts to display just cuts off when it's getting interesting. Continue can work occasionally and requesting to display in multiple message but it will eventually cut off and no way to see the remaining info it was going to output. I've tried to request functions and data separated but that doesn't seem to work either. I understand the limits are at 10,000 characters if I remember one of the answers I received.

buoyant nest
#

Characters is the wrong measurement, Tokens is the issue, and with code that becomes even more of a problem.

#

In general the GPT3.5 Models, that includes ChatGPT are limited to ~4k Tokens, this is the combination of Input + Output.

minor hare
#

ok, that was it misinforming... Ha!

buoyant nest
#

Code is really bad because each Whitespace = Token
Tabs = Token
New Line = Token

minor hare
#

Ah! thanks for that.