From the website linked in the readme: “A lot of research has been doing in this are and we can expect a lot more in 2024 in this space. I promise to share some clarity around where I think this industry is headed. In personal talks I have warned that multi-agent systems are complex and hard to get right. I've seen little evidence of real-world use cases too” These assistant systems fascinate me, but I just don’t hav…
Multi AI agent systems using OpenAI's assistants API
11–20 of 87 posts
Re: Multi AI agent systems using OpenAI's assistants API
#12Re: Multi AI agent systems using OpenAI's assistants API
#13I'd be interested in knowing if anyone is seriously using the assistants API, it feels like such a lock in to OpenAIs platform when your can alternatively just use completions that are much more easily interchanged.
I've indeed refused to work with some providers giving only a chat interface and not a completion interface because it made the communication "less natural" to the model (like adding new system messages in between for function calling on models which don't officially does it, or adding other categories than system/user/assistant)
Re: Multi AI agent systems using OpenAI's assistants API
#14I'd be interested in knowing if anyone is seriously using the assistants API, it feels like such a lock in to OpenAIs platform when your can alternatively just use completions that are much more easily interchanged.
I've indeed refused to work with some providers giving only a chat interface and not a completion interface because it made the communication "less natural" to the model (like adding new system messages in between for function calling on models which don't officially does it, or adding other categories than system/user/assistant)
I'd guestimate 99% of people using LLMs are using instruct-based message interfaces that have a variation of system/user/assistant. The top models mostly only come as a completion models, and even Anthropic has switched to a message based API
Re: Multi AI agent systems using OpenAI's assistants API
#15What's the use cases people are using Multi AI Agents to solve problems that deliver real value? Someone has something with your hands on right now?
Re: Multi AI agent systems using OpenAI's assistants API
#16Bare JS. What is this 2001?
Re: Multi AI agent systems using OpenAI's assistants API
#17Re: Multi AI agent systems using OpenAI's assistants API
#18From the website linked in the readme: “A lot of research has been doing in this are and we can expect a lot more in 2024 in this space. I promise to share some clarity around where I think this industry is headed. In personal talks I have warned that multi-agent systems are complex and hard to get right. I've seen little evidence of real-world use cases too” These assistant systems fascinate me, but I just don’t hav…
- Too many errors that just propogate on top of each other, if a single agent in the chain generates something even a little bit off then the whole system goes off the rails.
- You often end up having to pass a massive amount of shared context to every agent which just increases the cost dramatically.
Curiously enough we had an architect from OpenAI tell us the same thing about agent systems a few days ago (our company is a big spender so they serve a consulting function), so I don't think anybody is really finding success with multi-agent systems currently. IMO the core tech is nowhere near good enough yet.
Re: Multi AI agent systems using OpenAI's assistants API
#19Re: Multi AI agent systems using OpenAI's assistants API
#20What's the use cases people are using Multi AI Agents to solve problems that deliver real value? Someone has something with your hands on right now?
I imagine having an agent set up with specific RAG context to solve a specific problem and having another with a different RAG context to solve a different problem can be useful.