Replies: 1 comment 1 reply
-
|
The LLM uses the prompt plus the generated text so far to produce the next word. It doesn't have a "plan". Without including the generated text it cannot continue. It is the prompt and the resulting output that must fit into the context, not just the prompt. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Sometimes AI response does not fit into token limit and there is "continue" function to overcome that problem but to work properly this function should use the same seed as before or it may mess up the response.
so the request is to make it use the same seed as before instead of generating something new
I think it may be even good idea to retain the same seed over entire conversation session until one hits "regenerate" as there is no benefit from changing it and as I noticed it is messing up AI "plans"
Beta Was this translation helpful? Give feedback.
All reactions