Thanks for this informative and introductory video on Swarm Agents, though imho I didn't communicate how it "CRUSHES" the other agentic frameworks. It may have less abstraction and lighter as indicated.
That's correct. They are mostly wrappers with some extra features. If you want to implement an agent, you don't need any of them. They simply make it easier. :)
Thanks for the informative video. I suspect that OpenAI will be adding more functionality to the base tool very soon and maybe even a supported version. Also, please fix Mehdi's audio. It comes across clipped and grainy. :(
Thank you for your feedback. Unfortunately this session our internet was spotty so audio and video quality got affected by it. Hopefully future sessions will resolve this issue. Thank you!
@@prachijadhav9098 you just need to create a client with ollama api url rather than default Openai one. client = OpenAI( base_url = 'localhost:11434/v1', api_key='ollama', # required, but unused )
Great explanation!! Thanks
Thanks for this informative and introductory video on Swarm Agents, though imho I didn't communicate how it "CRUSHES" the other agentic frameworks. It may have less abstraction and lighter as indicated.
@@ysy69 thank you for your feedback! We will introduce more deeper comparisons in a later video!
Swarm just shows that all the Agentic framework are fluffy wrappers
That's correct. They are mostly wrappers with some extra features. If you want to implement an agent, you don't need any of them. They simply make it easier. :)
Hi thete ! What is he name of other UA-cam channel or the professor you mentioned who is producing content about RAG?
Hi. It's a substack newsletter has links to videos. Simply search for "aibyhand" and "substack", you'll find it. :)
Thanks for the informative video. I suspect that OpenAI will be adding more functionality to the base tool very soon and maybe even a supported version. Also, please fix Mehdi's audio. It comes across clipped and grainy. :(
Thank you for your feedback. Unfortunately this session our internet was spotty so audio and video quality got affected by it. Hopefully future sessions will resolve this issue. Thank you!
Interesting framework, Am I current in understanding it only supports openAI LLMS ?
it supports openai model
Basically they created their own version of Crew AI. Lame so far. However, can we use the Swarm library with other LLMS ?
yes for sure. sometimes light-weight is desirable depending on your use case. :)
Yes you can use it with other llms via Ollama
@@MehdiAllahyari how? new to swarm and ollama!
@@prachijadhav9098 you just need to create a client with ollama api url rather than default Openai one.
client = OpenAI(
base_url = 'localhost:11434/v1',
api_key='ollama', # required, but unused
)
@@prachijadhav9098 You simply need to create an OpenAI client object, but change the base url to Ollama and api_key to some random string.