OpenAI Swarm CRUSHES Traditional Agentic Frameworks in 2024!

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 18

  • @bonadio60
    @bonadio60 Місяць тому +2

    Great explanation!! Thanks

  • @ysy69
    @ysy69 Місяць тому +2

    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.

    • @TwoSetAI
      @TwoSetAI  Місяць тому +1

      @@ysy69 thank you for your feedback! We will introduce more deeper comparisons in a later video!

  • @daspradeep
    @daspradeep Місяць тому +5

    Swarm just shows that all the Agentic framework are fluffy wrappers

    • @MehdiAllahyari
      @MehdiAllahyari Місяць тому

      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. :)

  • @Mars.2024
    @Mars.2024 Місяць тому

    Hi thete ! What is he name of other UA-cam channel or the professor you mentioned who is producing content about RAG?

    • @MehdiAllahyari
      @MehdiAllahyari Місяць тому

      Hi. It's a substack newsletter has links to videos. Simply search for "aibyhand" and "substack", you'll find it. :)

  • @Avman20
    @Avman20 Місяць тому +2

    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. :(

    • @TwoSetAI
      @TwoSetAI  Місяць тому +1

      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!

  • @grantdavies6081
    @grantdavies6081 Місяць тому

    Interesting framework, Am I current in understanding it only supports openAI LLMS ?

    • @TwoSetAI
      @TwoSetAI  Місяць тому

      it supports openai model

  • @joneskiller8
    @joneskiller8 Місяць тому +3

    Basically they created their own version of Crew AI. Lame so far. However, can we use the Swarm library with other LLMS ?

    • @TwoSetAI
      @TwoSetAI  Місяць тому +1

      yes for sure. sometimes light-weight is desirable depending on your use case. :)

    • @MehdiAllahyari
      @MehdiAllahyari Місяць тому +1

      Yes you can use it with other llms via Ollama

    • @prachijadhav9098
      @prachijadhav9098 Місяць тому

      @@MehdiAllahyari how? new to swarm and ollama!

    • @MehdiAllahyari
      @MehdiAllahyari Місяць тому

      @@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
      )

    • @MehdiAllahyari
      @MehdiAllahyari Місяць тому

      @@prachijadhav9098 You simply need to create an OpenAI client object, but change the base url to Ollama and api_key to some random string.