#what what is |im sep| looao userid would
10 messages · Page 1 of 1 (latest)
It's an inaccuracy in the model. These are what the model is outputting before it comes through in the response.
When you call with the library or API - that code is sending off the payload as required to the raw model on the OpenAI server.
If you want to avoid such behaviour try altering the prompts you're providing to the model.
Or prepend a certain phrase for the model to continue completing
E.g.
messages=[
...
{
"role": "assistant",
"content": "Sure!"
}
]
The output with "Sure!" as the last message prior to the user's last message will set the model on the path of continuing after "Sure!"
Refer to the playground for more information.
Was there anything else you needed help with?