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!
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.
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" }, ] } ] }
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.
This is the cleanest solution I've seen to converting strings into usable JSON. Appreciate the detailed walkthrough here!
Your tutorials are the clearest and best in the bubble community. Feel like these videos should have 20x views!
So appreciated!
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!
Make more bubble videos, please. Yours are the best. 😁
Exactly what I need, thanks for your effort.
Glad it helped!
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!
I am team screen.studio :)
Hi, which browser do you use? :) It looks cool
Arc Browser!
thank you for this video!
No problem!
Super cool!!
How to save it in DB as a separate entities?
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.
@@BlankSlateLabs thank's, the biggest problem was how to select the proper data type.
thank you so much
Next video please continue and put them into list
nice, good suggestion. lemme put something together. (also can update with json mode vs. function calling)
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"
},
]
}
]
}
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.