Turn OpenAI's API Responses From Text to JSON Easily With Function Calling In Bubble

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

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

  • @roberthayes4312
    @roberthayes4312 10 หลายเดือนก่อน

    This is the cleanest solution I've seen to converting strings into usable JSON. Appreciate the detailed walkthrough here!

  • @davewliu
    @davewliu ปีที่แล้ว +1

    Your tutorials are the clearest and best in the bubble community. Feel like these videos should have 20x views!

  • @ajmound790
    @ajmound790 11 หลายเดือนก่อน

    So damn helpful. Every last one of your videos goes through something I need right now and can't find documented anywhere else. Wanted to just say thank you!

  • @PocketRiches
    @PocketRiches 11 หลายเดือนก่อน

    Make more bubble videos, please. Yours are the best. 😁

  • @xuyaoren
    @xuyaoren ปีที่แล้ว +1

    Exactly what I need, thanks for your effort.

  • @ninovizi
    @ninovizi 6 หลายเดือนก่อน

    Hey, what tool are you using for those effects as your mouse moves? There's so many startups for that already - wondering which you picked!

    • @BlankSlateLabs
      @BlankSlateLabs  5 หลายเดือนก่อน

      I am team screen.studio :)

  • @tima3829
    @tima3829 ปีที่แล้ว

    Hi, which browser do you use? :) It looks cool

  • @malekaimischke2444
    @malekaimischke2444 ปีที่แล้ว +1

    thank you for this video!

  • @watchparth
    @watchparth 6 หลายเดือนก่อน

    Super cool!!

  • @SashaShumylo
    @SashaShumylo 7 หลายเดือนก่อน

    How to save it in DB as a separate entities?

    • @BlankSlateLabs
      @BlankSlateLabs  5 หลายเดือนก่อน +1

      Two steps:
      1. Create a backend workflow that takes in the parameters. So in this example:
      - keyword (data type text)
      - sentiment (data type text or an option set)
      within that workflow, you would create a new thing, and set the values based on the parameters.
      2. Schedule API workflow on a list. Select the list from the response and configure to pass the parameter values for each item in the list.

    • @SashaShumylo
      @SashaShumylo 5 หลายเดือนก่อน

      @@BlankSlateLabs thank's, the biggest problem was how to select the proper data type.

  • @Fannyvieira1
    @Fannyvieira1 11 หลายเดือนก่อน

    thank you so much

  • @procrastinateXrok
    @procrastinateXrok 8 หลายเดือนก่อน

    Next video please continue and put them into list

    • @BlankSlateLabs
      @BlankSlateLabs  7 หลายเดือนก่อน

      nice, good suggestion. lemme put something together. (also can update with json mode vs. function calling)

  • @abbeyjackson4362
    @abbeyjackson4362 9 หลายเดือนก่อน

    Thank you for this tutorial! With it I was able to get data returned in a consistent format (finally!) but I am really struggling to use the json that is returned and wonder if you might be able to help me figure it out. I have the following json which I was able to get returned to me from OpenAI using function calling. I need to display the raw json array of products for each category in a different display group. In otherwords I am trying to extract the json string under products for each category and displaying the extracted json in a display group. I both need to display the raw products json for each category separately as well as USE this raw products array in a future API call.
    I absolutely can not figure out how to do this. I have been trying for several days. I have tried a few different plugins to no avail. Does anyone know how to do this?
    {
    "lists": [
    {
    "category": "ENUMValue1",
    "products": [
    {
    "name": "name1",
    "rating": 95,
    "url": "url1"
    },
    {
    "name": "name2",
    "rating": 95,
    "url": "url2"
    },
    ]
    },
    {
    "category": "ENUMValue2",
    "products": [
    {
    "name": "name1",
    "rating": 95,
    "url": "url1"
    },
    {
    "name": "name2",
    "rating": 95,
    "url": "url2"
    },
    ]
    },
    {
    "category": "ENUMValue3",
    "products": [
    {
    "name": "name1",
    "rating": 95,
    "url": "url1"
    },
    {
    "name": "name2",
    "rating": 95,
    "url": "url2"
    },
    ]
    }
    ]
    }

    • @BlankSlateLabs
      @BlankSlateLabs  7 หลายเดือนก่อน

      Hiiii so sorry for the delay. you probably already solved this, but if not, feel free to email me at hello [at] blankslate-labs.com and happy to chat through options.