You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ChatGPT supports @ different GPTs in one conversation. We can implement GPTGroupChat and GPTGroupChatManager to support this.
Potential benefits
persistency;
some internal understanding/optimization that different assistants are used (speculation)
We might be able to implement by using same thread_id with different assistant_id in multiple run. run = client.beta.threads.runs.create( thread_id=thread.id, assistant_id=assistant.id )
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
ChatGPT supports @ different GPTs in one conversation. We can implement GPTGroupChat and GPTGroupChatManager to support this.
Potential benefits
We might be able to implement by using same thread_id with different assistant_id in multiple run.
run = client.beta.threads.runs.create( thread_id=thread.id, assistant_id=assistant.id )
My conversation session with two GPTs
Beta Was this translation helpful? Give feedback.
All reactions