Replies: 2 comments 1 reply
-
Traceback (most recent call last): File "/workspaces/MemGPT/memgpt/openai_tools.py", line 97, in wrapper |
Beta Was this translation helpful? Give feedback.
-
I keep on getting "TypeError: object str can't be used in 'await' expression" even with the persona optimized for gpt-3.5-turbo performance. |
Beta Was this translation helpful? Give feedback.
-
Continuation on #1
What's changed for gpt-3.5-turbo?
We've added some revised prompts that are meant to run specifically with
gpt-3.5-turbo
, and that do better than the base prompts in the repo that were designed withgpt-4
in mind.However, these prompts can definitely be improved. Please play around with the
gpt-3.5-turbo
specific prompts to see if you can come up with any modifications that make MemGPT work better, and we'll merge your changes in!Important places where code was modified for
gpt-3.5-turbo
:gpt-3.5-turbo
often didn't include any inner monologue with thegpt-4
prompts, so we modified the initial boot messages to use "inner thoughts" as a prefix inside the inner monologuegpt-3.5-turbo
often forgets to use thesend_message
function (and instead puts its message inside the inner monologue), so we added an extra hint to usesend_message
inside the persona (hacky)How can you help?
Remaining problems with
gpt-3.5-turbo
:gpt-4
send_message
and putting messages in inner thoughtsTry messing with the base system prompts, initial boot messages, persona file, etc, to improve 3.5 performance. If you have any luck, please let us know and we'll merge your edits in!
Example using
gpt-3.5-turbo
:Beta Was this translation helpful? Give feedback.
All reactions