Learn Function calls in OpenAI Assistants API (NodeJS tutorial)

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

КОМЕНТАРІ • 15

  • @CHURCHGPT
    @CHURCHGPT 8 місяців тому

    Makes no sense how little subscriber are here I feel blessed! 🙏

  • @cescfabregas13
    @cescfabregas13 9 місяців тому +2

    Love your assistant api series. Started following you on medium as well.

    • @ralfelfving
      @ralfelfving  9 місяців тому

      Glad that it's useful, and thanks for the follows! :)

    • @CHURCHGPT
      @CHURCHGPT 8 місяців тому

      Same

  • @bader-eddineqodia5964
    @bader-eddineqodia5964 2 місяці тому

    Super helpful, thank you so much !

  • @captntact
    @captntact 6 місяців тому

    Super helpful. Thank you!

  • @mohamedhabib7871
    @mohamedhabib7871 9 місяців тому +1

    Hello Ralf , love your videos ❤ , can you make a video on how to return structured Json using the openai api ?

    • @ralfelfving
      @ralfelfving  9 місяців тому

      I'll look into it.

    • @MrBl0m
      @MrBl0m 9 місяців тому +2

      model: "gpt-3.5-turbo-1106",
      ......
      temperature: 1,
      max_tokens: 4096,
      top_p: 1,
      frequency_penalty: 0,
      presence_penalty: 0,
      response_format: { type: "json_object" }
      });

    • @ralfelfving
      @ralfelfving  8 місяців тому +1

      Published a video with an example today!

    • @mohamedhabib7871
      @mohamedhabib7871 8 місяців тому

      @@ralfelfving Yes, i just saw it , thank you so much !

  • @cameronyking
    @cameronyking 4 місяці тому

    Is there repo? I went to medium article couldn't find source files.

  • @robgalvin7848
    @robgalvin7848 5 місяців тому

    When would I use Functions over providing a File? My scenario is for some simple analysis of CSV data - In the playground it works well using a CSV file. I am not sure if using Functions to retrieve the data (preferred0 would work equally as well to perform data analysis.

  • @hidayat_pcd
    @hidayat_pcd 9 місяців тому +1

    Why do you use fs npm package instead of Node's built-in module? Is there something in particular that makes you choose that?

    • @ralfelfving
      @ralfelfving  8 місяців тому

      No good reason, just a small mistake from me.