Agentic Node Graph Generator

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 9

  • @kesor6
    @kesor6 3 หลายเดือนก่อน

    Excellent explanation. One thing I did previously is make my code validate the generation, and return errors to the LLM telling it to try again. My context was using LLM to write database queries, so for example if it created a query without a LIMIT clause, I would retry the generation with an error attached saying queries without LIMIT are not allowed. This was using OpenAI's function-calling process, where the LLM would generate queries that would get called on the database, and I put this gatekeeper (static checks in code) there to stop it from sending "bad" queries.

    • @mike_lyndon
      @mike_lyndon  3 หลายเดือนก่อน

      Yup! That's generally the way to handle it. The instructor library leverages Pydantics validation mechanisms making for a great dev experience.

  • @thelookerful
    @thelookerful 2 หลายเดือนก่อน

    nice work Mike!!!

  • @ProgressRobotics
    @ProgressRobotics 3 หลายเดือนก่อน

    Thank you for this! I was wondering, does this allows for cyclical workflows as well?

    • @mike_lyndon
      @mike_lyndon  3 หลายเดือนก่อน

      Maybe. :) I haven't tried. I was working with the functionality I had available to me. If you provide reference workflows that are cyclic it might be able to infer from that.

  • @veryvanya
    @veryvanya 3 หลายเดือนก่อน

    great vid! is magpie accessible now? seems really powerful for custom workflows, would love to jump onboard

    • @mike_lyndon
      @mike_lyndon  3 หลายเดือนก่อน +1

      Yup. I’ve added a link in the video description.

  • @mittanuljak4747
    @mittanuljak4747 3 หลายเดือนก่อน

    Very intresting! Cn you make a more compact version (3-5minutes or max 10) so people can understand the concept quicker?