#How much code we talking about Because
8 messages · Page 1 of 1 (latest)
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.
Characters is the wrong measurement, Tokens is the issue, and with code that becomes even more of a problem.
An API for accessing new AI models developed by OpenAI
In general the GPT3.5 Models, that includes ChatGPT are limited to ~4k Tokens, this is the combination of Input + Output.
ok, that was it misinforming... Ha!
Code is really bad because each Whitespace = Token
Tabs = Token
New Line = Token
Ah! thanks for that.