Hello,
I’m using a Vertex AI API call within my bubble app which is operational, although I’m attempting to provide vertex AI with specific data from my database. This is what I have currently but I don’t think it’s working correctly:
When I use this, it seems to give me a generic response that, in essence, mimics what I’ve just told it to do (what’s in my Arbitrary text).
Does my expression provide the API call with the access to the data?
Is anyone able to advise on if I’m doing this correctly or not, or how to improve this?
Thanks
Any advice or insight is appreciated!
Thanks!
You aren’t sending the data just dynamically referencing it (at least based on what you’re showing). You’d have to extract it as text or a list etc for it to be sent in the API
Thanks! Ah I see…
So that’d mean I’d need to export it as csv? And if so, how would I then send the data?
So it’d be something along the lines of:
Get data from page URL's board's tasks:each items title
(‘title’ just for example)?
If so, how would I achieve this if I wanted to send all the data fields of the Board’s Task’s data type?
ie: not just the “each items title”
My goal is to get Vertex AI to review all the data fields within the Data type to “provide insights, recommendation”
Oh that’s quite helpful! Thanks!
So with this it should now send the following data fields in the API call for each item (task), formatted as:
- John, 12:00pm, To Do, etc… ?