Low-Code Agentic Flows
In this video we add two agentic flows to existing low-code Dropbox and Slack integrations, giving our built-in chat bot the ability to fetch files from our customers' Dropbox accounts, and send notifications to our customers' Slack workspaces.
Here is the schema for the two flows we built in the video:
- Dropbox
- Slack
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "search-fetch-dropbox-files",
"$comment": "Search for files in Dropbox by file name. Returns list of matching files and a presigned URL where the file can be fetched.",
"type": "object",
"properties": {
"filename": {
"description": "Partial or full name of a file",
"type": "string"
},
"folder": {
"description": "Subfolder to search for the file",
"type": "string"
}
},
"required": ["filename"]
}
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "send-slack-message",
"$comment": "Send a message to Slack",
"type": "object",
"properties": {
"message": {
"description": "The message to send to Slack. Reference https://docs.slack.dev/messaging/formatting-message-text.md for formatting documentation.",
"type": "string"
}
},
"required": ["message"]
}
For additional information on building agentic flows in low-code, see Low-Code Agentic Flows.