Hello!
When I ask a question gpt answers well, but on the second question the answer is not countinueing the first answer.
Basically it forgets what was the first conversation.
It needs to be continueous lik this:
-Hello what’s the weather in Tokyo?
-it answers then comes the other question…
-and what about Paris?
-it should say the weather in Paris.
But my problem is now the answer is not related to the first question.
#Unreal Engine API ChatGPT Continuity does not work
1 messages · Page 1 of 1 (latest)
Unreal engine? 🤷♂️
If you use the OpenAI api: no memory. Use embeddings.
If you use ChatGPT: has memory, limited.
thanks for reply I'm using openai plugin with chatgpt model. how to use embeddings?
I mean is it some method or how?
@high stone is there any way to make a conversation with memory?
or at least some kind of real like conversation?
If you’re using OpenAI ChatGPT then you’ve memory already available.
“Unreal engine” isn’t an OpenAI product
If you use the api, check my reply above. API is stateless and has no memory.
There’s no “OpenAI plugin with ChatGPT model”
There are plugins you can use in ChatGPT and ChatGPT always uses either gpt-3, gpt-4 or gpt-4-dalle models
ChatGPT is the online instance or the mobile app.
It’s not a model per se but an application.
you have to store all the messages and make requests with those past messages as context
you have to store the response as well
this is also one of the pain points of using the api, but it is doing its job well. well other than not sending the usage from streaming prompts