Integrate Composio with Langflow
Langflow integrates with Composio as a toolset for your Agent component.
Instead of juggling multiple integrations and components in your flow, connect the Composio component to an Agent component to use all of Composio's supported APIs and actions as Tools for your agent.
Prerequisites​
Connect Langflow to a Composio tool​
- In the Langflow Workspace, add an Agent component.
- In the Workspace, add the Composio Tools component.
- Connect the Agent component's Tools port to the Composio Tools component's Tools port.
- In the Composio API Key field, paste your Composio API key. Alternatively, add the key as a global variable.
- In the App Name field, select the tool you want your agent to have access to. For this example, select the GMAIL tool, which allows your agent to control an email account with the Composio tool.
- Click Refresh. The component's fields change based on the tool you selected. The Gmail tool requires authentication with Google, so it presents an Authentication Link button.
- Click the link to authenticate.
- In the Google authentication dialog, enter the credentials for the Gmail account you want to control with Composio, and then click Authenticate.
- Return to Langflow.
- To update the Composio component, click Refresh. The Auth Status field changes to a ✅, which indicates the Langflow component is connected to your Composio account.
- In the Actions to use field, select the action you want the Agent to take with the Gmail tool. The Gmail tool supports multiple actions, and also supports multiple actions within the same tool. The default value of GMAIL_CREATE_EMAIL_DRAFT is OK for this example. For more information, see the Composio documentation.
Create a Composio flow​
- In the Workspace, add Chat Input and Chat Output components to your flow.
- Connect the components so they look like this.
- In the OpenAI API Key field of the Agent component, paste your OpenAI API key. Alternatively, add the key as a global variable.
- To open the Playground pane, click Playground.
- Ask your AI:
_10What tools are available to you?
The response should be similar to:
_10I have access to the following tools:_10_101. **GMAIL_CREATE_EMAIL_DRAFT**: This tool allows me to create a draft email using Gmail's API. I can specify the recipient's email address, subject, body content, and whether the body content is HTML._10_102. **CurrentDate-get_current_date**: This tool retrieves the current date and time in a specified timezone.
This confirms your Agent and Composio are communicating.
- Tell your AI to write a draft email.
_10Create a draft email with the subject line "Greetings from Composio"_10recipient: "your.email@address.com"_10Body content: "Hello from composio!"
Inspect the response to see how the agent used the attached tool to write an email. This example response is abbreviated.
_10The draft email has been successfully created with the following details:_10Recipient: your.email@address.com_10Subject: Greetings from Composio_10Body: Hello from composio!
_23{_23 "recipient_email": "your.email@address.com",_23 "subject": "Greetings from Composio",_23 "body": "Hello from composio!",_23 "is_html": false_23}_23_23{_23 "successfull": true,_23 "data": {_23 "response_data": {_23 "id": "r-7515791375860110875",_23 "message": {_23 "id": "1939d1830046d2cb",_23 "threadId": "1939d1830046d2cb",_23 "labelIds": [_23 "DRAFT"_23 ]_23 }_23 }_23 },_23 "error": null_23}
- To confirm further, navigate to the Gmail account you authenticated with Composio. Your email is visible in Drafts.
You have successfully integrated your Langflow component with Composio. To add more tools, add another Composio component.