Quickstart for AI
Last updated
Was this helpful?
Last updated
Was this helpful?
In this guide, we will use the and to enable users to connect apps and invoke functions in those apps from your AI application.
Before you proceed, please for a free trial (if you haven't).
Follow the steps .
Your users have to first connect an app before you can invoke functions in that app. You could use or more of the following options.
Call the method to easily show all (or some) available apps as a marketplace. Users will simply click an app to connect.
Let's say your user says they want to "send a message saying hello! to the random channel on slack".
In order to execute the slack-post-message
function, you have to first predict that its the most relevant function.
Sample Response:
The functions
array will be empty if Integry is unable to predict the function. You can ask the user to improve the prompt
and try again.
In order to invoke a function, you have to first prepare the arguments based on the parameters that the function requires.
Sample Response for Prediction with Populated Arguments:
The response is the same as above.
If you use predict the arguments with Integry AI, we handle this for you.
This will open the Function UI (with the pre-filled arguments) in a modal.
This method returns a result
object with the filled-in arguments that you can use to invoke the function.
Functions that mutate data can potentially do irreversible damage. Even if you have predicted the arguments, consider always showing the Function UI to the user (with the predicted arguments) so they can confirm before you execute.
The result
object will have the response from the app if the function was executed (or error details if it wasn't).
In this case, you should see the following success response from Slack in the console:
That's it! You have enabled your users to connect apps and execute functions in those apps from your AI application using Integry Functions.
Try fetching data using a function like pipedrive-get-all-persons
. It supports paginated calls so the result will include a next_page
cursor that you will include in the arguments in the next invocation.
Build your own apps marketplace and call the method when they click on an app.
Call method (when they try to use a function of an app) to check if the app is connected. If not, ask them to .
You can simply pass the prompt to Integry and , or (by listing all available functions).
Call the API endpoint with {"prompt: "<user_message>"}
to get the most relevant function. You can also have Integry .
Retrieve a list of available functions using the endpoint and pass them to your AI model. Your model will predict the function to use.
If you need to call an endpoint that is not supported by Integry, you can make a .
Similar to predicting the function, you can simply pass the prompt to Integry and , or (using the function spec).
Call the API endpoint with predict_arguments=true
to get the most relevant function with populated arguments.
Alternatively, if you predicted the function yourself and want Integry to predict the arguments, call the API endpoint with prompt
in the body to get the function with populated arguments.
Call the endpoint to get the function spec and pass it to your AI model. Your model will predict and populate the arguments.
You may need to make additional calls to to fetch options. Once you have the related data from the source function, use your model to pick the most relevant value from the set.
Before you invoke the function, if you want the user to confirm the predicted arguments, or provide one (or more) required arguments that could not be predicted, you can call method to show the Function UI to the user (with pre-filled arguments, if any).
Call with the <function_name>
and arguments
object to execute the function.