Instructions
Run an AI Model:
You need an event runs the plugin action called "Aicado AI Connector". For example "when a button is clicked".
Select an AI model, enter required input data, and set a webhook URL for receiving the output.
Save the
run_id
for getting the output response:Once the action has done, it returns a
run_id
as a state.This value should be stored in your database as a new entry, so you can match it later with the run's output.
Get output data with webhook:
When the AI model finishes processing, Aicado sends the result to your Bubble app via the webhook that you entered in the client-side plugin action.
The webhook endpoint is a backend API workflow you’ve created (e.g.,
/wf/get-response
).
Update the Output Entry in the Database:
The webhook sends:
run_id
(to match with the database entry)output
(text)output_list
(list of text)expense
(the number of credits used for the operation)
You should search for the existing entry you've created using the
run_id
, and updates it's fields.
Last updated
Was this helpful?