adaptiv
November 22, 2023, 12:58am
4
I see a similar bug for assistant runs without using functions.
Messages get re-created up to 20 times on the GPT-3.5 model. GPT-4 works fine but cost 10 times as much.
I am seeing a huge issue with a very basic implementation of the Assitant API on the gpt-3.5-turbo model.
Background-Information to our use case: We try to analyse documents and extract information. For this, we created one assistant with instructions on what to do with the document (document is given over user message).
For every document (roughly 6000 in total) we do the following:
Create a thread on the assistant which we created over the playground
Add the “user” message to the thread. T…