Use Posthog with AI Agents

Integrate PostHog to manage your analytics directly from Composio.
🔗 Connect and Use Posthog
1. 🔑 Connect your Posthog account
2. ✅ Select an action
3. 🚀 Go live with the agent
What do you want to do?
Actions
organizations
- Retrieve paginated organization list
actions
activity_log
annotations
app_metrics
batch_exports
cohorts
dashboard_templates
dashboards
early_access_feature
event_definitions
events
experiments
explicit_members
exports
feature_flags
groups
groups_types
insights
funnel
trend
notebooks
persons
pipeline_destination_configs
pipeline_frontend_apps_configs
pipeline_import_apps_configs
pipeline_transformation_configs
plugin_configs
property_definitions
query
session_recording_playlists
session_recordings
sessions
subscriptions
surveys
users

API actions for Posthog for AI assitants/agents

Language
JS
PYTHON

Persons

Retrieve Person Details By Project

This endpoint allows reading and deleting persons; for creation or updates, use the capture API, the `$set` and `$unset` properties, or SDKs.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PERSON_DETAILS_BY_PROJECT])

Create Person Path With Format Option

This API endpoint is for reading and deleting users. Use the capture API, `$set`/`$unset` properties, or SDKs for creating/updating users.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PERSON_PATH_WITH_FORMAT_OPTION])

Retrieve Or Delete Person Retention Data

This endpoint is for reading and deleting person data; use the capture API, `$set`/`$unset` properties, or SDKs for creation and updates.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_OR_DELETE_PERSON_RETENTION_DATA])

Retrieve Project Person Stickiness

This endpoint allows for reading and deleting persons. For creations or updates, use the capture API, set/unset properties, or SDKs.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PROJECT_PERSON_STICKINESS])

Retrieve Person Values By Project

This endpoint is for reading and deleting persons. For creation or updates, use the [capture API](https://posthog.com/docs/api/capture), `$set`/`$unset`, or SDKs.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PERSON_VALUES_BY_PROJECT])

Pipeline_destination_configs

List Pipeline Destination Configs With Pagination

List pipeline destination configurations for a given project by ID, with optional pagination through 'limit' and 'offset' query parameters. Returns details such as plugin info and delivery rat
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_LIST_PIPELINE_DESTINATION_CONFIGS_WITH_PAGINATION])

Create Pipeline Destination Config

Create pipeline destination configurations for a specific project by submitting plugin and order details, among other configuration info, with required project ID. Authentication needed. Respo
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PIPELINE_DESTINATION_CONFIG])

Retrieve Pipeline Destination Config Details

Retrieve details of a specific pipeline destination config for a project by its ID. Requires project ID and destination config ID. Supports PersonalAPIKeyAuth for read access. Responds with co
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PIPELINE_DESTINATION_CONFIG_DETAILS])

Update Pipeline Destination Config

Update the configuration for a pipeline destination in a project. Accepts a JSON, form-urlencoded, or multipart data payload to modify plugin settings by providing project and config IDs. Requ
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PIPELINE_DESTINATION_CONFIG])

Update Project Pipeline Destination Config

Update a project's pipeline destination config by ID via PATCH API request. Supports JSON/form requests, with fields like plugin & order. Requires PersonalAPIKeyAuth.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PROJECT_PIPELINE_DESTINATION_CONFIG])

Remove Pipeline Destination Config

Delete a pipeline destination configuration by specifying a unique integer ID within a project. Requires 'plugin:write' permission via PersonalAPIKeyAuth. No response body on success (204). Pr
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REMOVE_PIPELINE_DESTINATION_CONFIG])

Fetch Pipeline Destination Details

Use a GET request to '/api/projects/{project_id}/pipeline_destination_configs/{id}/activity/' to get details, status, config, and metrics for a pipeline destination by ID, returning JSON.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_FETCH_PIPELINE_DESTINATION_DETAILS])

Retrieve Pipeline Destination Frontend Config

Retrieve configuration details for a specific pipeline destination in a project by getting the frontend data of the config with a given ID. This endpoint requires the 'project_id' and 'id' of
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PIPELINE_DESTINATION_FRONTEND_CONFIG])

Create Pipeline Destination Config Job

Create a job for a pipeline destination config with a specific ID within the specified project. Requires project ID & config ID in the path, and a JSON payload with plugin and order info.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PIPELINE_DESTINATION_CONFIG_JOB])

Rearrange Project Pipeline Destination Configs

"PATCH /api/projects/{project_id}/pipeline_destination_configs/rearrange/": Adjust order and settings of pipeline destinations for a project by project_id. Requires JSON body with plugin, enab
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REARRANGE_PROJECT_PIPELINE_DESTINATION_CONFIGS])

Pipeline_frontend_apps_configs

List Pipeline Frontend App Configs

Retrieve paginated configurations for pipeline frontend apps associated with a specified project. Query parameters 'limit' and 'offset' control pagination. Requires a project ID and PersonalAP
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_LIST_PIPELINE_FRONTEND_APP_CONFIGS])

Create Frontend App Pipeline Config

Create a config for pipeline frontend apps within a specified project. Requires project_id and payload with object properties such as plugin, enabled status, order, etc. Returns newly created
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_FRONTEND_APP_PIPELINE_CONFIG])

Retrieve Specific Pipeline Frontend App Config

Retrieve the configuration details of a specific pipeline frontend app by providing its unique ID and the associated project ID. Permissions: 'plugin:read'. Response includes plugin config inf
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_SPECIFIC_PIPELINE_FRONTEND_APP_CONFIG])

Update Pipeline Frontend App Config

Update configuration for a specific pipeline frontend app by providing its ID and the project ID. Configure details like activation, order, and optional parameters via JSON or form data. Authe
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PIPELINE_FRONTEND_APP_CONFIG])

Partial Pipeline Frontend App Config Update

Patch method to partially update config of a pipeline frontend app for a project by ID. Requires write permission on plugin. Accepts JSON, form-data; returns updated config details.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_PARTIAL_PIPELINE_FRONTEND_APP_CONFIG_UPDATE])

Remove Pipeline Frontend App Config

Delete a pipeline frontend app configuration for a specific project. Requires 'project_id' and config 'id' in the path and 'plugin:write' permissions. Responds with 204 on success without a bo
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REMOVE_PIPELINE_FRONTEND_APP_CONFIG])

Fetch Frontend App Config Status

Retrieve activity details for a specific pipeline frontend app config by ID within a project. Requires both `project_id` and config `id` in the path. Returns JSON with app config details like
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_FETCH_FRONTEND_APP_CONFIG_STATUS])

Retrieve Pipeline Frontend Plugin Config

Retrieve the frontend configuration for a specific plugin in a project's pipeline. Requires project and config IDs and returns details like plugin info, status, and creation timestamps.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PIPELINE_FRONTEND_PLUGIN_CONFIG])

Create Project Pipeline Frontend App Job

Create a job for a pipeline frontend app config in a project. Requires `project_id` and config `id`, accepting JSON/form-data. Returns the created job's details.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PROJECT_PIPELINE_FRONTEND_APP_JOB])

Rearrange Frontend App Pipeline Configs

PATCH /api/projects/{project_id}/pipeline_frontend_apps_configs/rearrange/: Rearrange the config of frontend apps in a project's pipeline. Requires project_id in the path and a JSON object in
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REARRANGE_FRONTEND_APP_PIPELINE_CONFIGS])

Pipeline_import_apps_configs

List Project Pipeline Import Configs

List pipeline import app configurations for a specified project, with pagination options 'limit' and 'offset'. Requires a project ID and supports PersonalAPIKeyAuth for security. Responds with
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_LIST_PROJECT_PIPELINE_IMPORT_CONFIGS])

Create Project Pipeline App Configs

Create pipeline app configurations for a specified project via POST, requiring a project ID and JSON, form, or multipart payload. Supports configs, plugins, and app details. Returns 201 on suc
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PROJECT_PIPELINE_APP_CONFIGS])

Retrieve Project Pipeline Plugin Config

Retrieve configuration details of a specific plugin for a given project pipeline by ID. Requires a valid Project ID and Plugin Config ID. Supports PersonalAPIKeyAuth for 'plugin:read' access.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PROJECT_PIPELINE_PLUGIN_CONFIG])

Update Pipeline Plugin Config

Update a project-specific pipeline plugin configuration by supplying the project ID and config ID. This PUT request expects details like plugin state, order, and more in JSON, form data, or UR
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PIPELINE_PLUGIN_CONFIG])

Update Plugin Config For Project

Update a plugin config's partial details in a project by its ID using PATCH. Requires project_id, config ID. Accepts JSON/form data. Authenticated with PersonalAPIKeyAuth. Returns updated conf
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PLUGIN_CONFIG_FOR_PROJECT])

Remove Pipeline Import App Config

Delete a specific pipeline import app configuration using its ID within a project. Requires project ID and config ID, and auth via PersonalAPIKeyAuth with plugin write access. No response body
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REMOVE_PIPELINE_IMPORT_APP_CONFIG])

Retrieve Plugin Config Activity

Retrieve activity details for a specific plugin config within a project's pipeline import apps. Requires 'project_id' and plugin config 'id' within the API path.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PLUGIN_CONFIG_ACTIVITY])

Retrieve Plugin Config Frontend

Retrieve the frontend configuration of an app's pipeline import by ID within a specified project. Requires `project_id` and `id` of the plugin config. Returns JSON object with config details.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PLUGIN_CONFIG_FRONTEND])

Create Pipeline Import Apps Config Job

A job imports app settings into a project pipeline using project_id and plugin config id, accepting JSON/form/multipart, and specifies plugin details, enabling status, and order for pipeline_i
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PIPELINE_IMPORT_APPS_CONFIG_JOB])

Rearrange Project Import App Configurations

Rearrange app import settings in a project using PATCH /api/projects/{project_id}/... by updating plug-in order and status. Requires `project_id` and a JSON with configurations.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REARRANGE_PROJECT_IMPORT_APP_CONFIGURATIONS])

Pipeline_transformation_configs

List Project Pipeline Configurations

Fetch paginated pipeline configuration list for a project by its ID, utilizing optional `limit` and `offset`. Endpoint returns JSON data.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_LIST_PROJECT_PIPELINE_CONFIGURATIONS])

Create Project Pipeline Transformation Config

Create a pipeline transformation config within a specific project by POSTing JSON, form, or multipart data. Include plugin ID, order, and enabled status. Ensure project_id is in the path. Auth
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PROJECT_PIPELINE_TRANSFORMATION_CONFIG])

Retrieve Pipeline Transformation Config

Retrieve the configuration for a specific pipeline transformation plugin in a project by its ID using a GET request. Requires project ID and plugin config ID in the path and 'plugin:read' perm
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PIPELINE_TRANSFORMATION_CONFIG])

Update Pipeline Transformation Config

Update a pipeline transformation configuration for a specific project and config ID. Requires project_id and config ID in the path and JSON payload. Supports plugin activation and order change
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PIPELINE_TRANSFORMATION_CONFIG])

Update Project Pipeline Transformation Config

Update a specific pipeline transformation configuration for a project by providing a `project_id` and configuration `id`. This PATCH request can modify properties like `plugin`, `enabled`, and
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PROJECT_PIPELINE_TRANSFORMATION_CONFIG])

Remove Pipeline Transformation Config By Id

Delete a specific pipeline transformation configuration by ID within a project. Requires the project ID and configuration ID. Secured by PersonalAPIKeyAuth with plugin:write access. No respons
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REMOVE_PIPELINE_TRANSFORMATION_CONFIG_BY_ID])

Retrieve Pipeline Transformation Activity

Retrieve the activity details of a specific pipeline transformation configuration in a project using its unique integer ID. Requires project ID. Returns JSON including config, plugin info, and
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PIPELINE_TRANSFORMATION_ACTIVITY])

Retrieve Pipeline Transformation Frontend Config

Retrieve the frontend configuration details for a specific pipeline transformation by ID within a given project. This endpoint requires the project ID and transformation config ID in the path.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PIPELINE_TRANSFORMATION_FRONTEND_CONFIG])

Initiate Pipeline Transformation Job

Create a pipeline transformation job for a specified plugin config in a project by POSTing to `/api/projects/{project_id}/pipeline_transformation_configs/{id}/job/`. Requires project ID and pl
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_INITIATE_PIPELINE_TRANSFORMATION_JOB])

Rearrange Pipeline Transformation Configs

Endpoint `/api/projects/{project_id}/pipeline_transformation_configs/rearrange/` allows for partial updates to the arrangement of pipeline configurations for a given project. Accepts PATCH req
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_REARRANGE_PIPELINE_TRANSFORMATION_CONFIGS])

Plugin_configs

List Project Plugin Configurations

Retrieve a paginated list of plugin configurations for a specific project by project ID. Supports optional 'limit' & 'offset' query params for result batching. Requires 'PersonalAPIKeyAuth' fo
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_LIST_PROJECT_PLUGIN_CONFIGURATIONS])

Create Project Plugin Configuration

Create a new plugin configuration for a specified project by POST to /api/projects/{project_id}/plugin_configs/. Requires project_id and JSON payload with plugin details; must authenticate wit
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_CREATE_PROJECT_PLUGIN_CONFIGURATION])

Retrieve Plugin Config Details

Retrieve the configuration details of a specific plugin by its ID for a given project. This endpoint requires a project ID and plugin config ID, with read permission, and returns an object con
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_RETRIEVE_PLUGIN_CONFIG_DETAILS])

Update Project Plugin Configuration

Update project plugin config using its integer ID and project string ID; accepts JSON, URL-encoded, or form-data. Requires authentication; returns the updated config.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.POSTHOG_UPDATE_PROJECT_PLUGIN_CONFIGURATION])

Frequently asked questions

What is Composio.dev?

Composio.dev is a platform for building AI applications, designed to make the process of developing AI solutions super easy and fun! It provides a comprehensive set of tools and libraries that simplify the process of developing AI solutions, allowing you to focus on the creative aspects of your project without getting bogged down by the technical details.

How does Composio.dev support Posthog?

Composio.dev seamlessly integrates with Posthog, allowing you to leverage its capabilities within the Composio.dev platform. You can utilize Posthog to call functions across various platforms, including Google, GitHub, and others, making it a breeze to incorporate different services into your AI applications. Additionally, it supports user authentication via OAuth2 and can work in conjunction with other popular frameworks like LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with Posthog?

With Posthog, you have access to a wide range of state-of-the-art language models, including GPT-4o (OpenAI), GPT-3.5 (OpenAI), GPT-4 (OpenAI), Claude (Anthropic), PaLM (Google), LLaMA and LLaMA 2 (Meta), Gemini, and many others. This flexibility allows you to choose the model that best suits your specific use case, whether you're building a chatbot, a content creation tool, or any other AI-powered application. You can experiment with different models and find the one that delivers the best performance for your project.

How can I integrate Posthog into my project?

Composio.dev provides a seamless integration for Posthog, making it super easy to incorporate this powerful framework into your projects. You can leverage the Composio.dev API to call functions from Posthog, allowing you to tap into its capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with your preferred programming language and integrate Posthog into your projects seamlessly.

What is the pricing for Posthog?

Posthog is completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes it accessible for developers and organizations of all sizes to explore and experiment with this powerful tool without any upfront costs. Whether you're a student working on a personal project or a startup building the next big thing, you can get started with Posthog without worrying about breaking the bank.

What kind of authentication is supported for Posthog?

Posthog supports OAuth2 authentication, ensuring secure and authorized access to its functionalities. You can leverage the Composio.dev API to handle authentication and call functions from Posthog seamlessly. The SDK is available in Python, JavaScript, and TypeScript for your convenience, making it easy to integrate authentication into your projects and keep your users' data safe and secure.

Can I add Posthog to my project?

Absolutely! You can easily incorporate Posthog into your project by utilizing the Composio.dev API. This API allows you to call functions from Posthog, enabling you to leverage its capabilities within your application. The SDK is available in Python, JavaScript, and TypeScript to facilitate integration, so you can work with the language you're most comfortable with and add Posthog to your project with ease.

What is the accuracy of Posthog?

Posthog is designed to provide highly accurate and reliable results, ensuring that your AI applications perform at their best. The integration with Composio.dev ensures precise function calls, enabling you to build robust and powerful AI applications with confidence. Posthog's comprehensive framework and the ability to leverage state-of-the-art models ensure reliable and accurate outcomes for your AI development needs, whether you're working on a chatbot, a content creation tool, or any other AI-powered project.

What are some common use cases for Posthog?

Posthog can be used for a wide range of AI applications, making it a versatile tool for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. It's particularly useful for building chatbots, virtual assistants, content creation tools, and other AI-powered applications that can help you automate tasks, engage with users, and create compelling content. Whether you're working on a personal project or building a product for your startup, Posthog can help you bring your ideas to life.

How does Posthog handle data privacy and security?

Data privacy and security are crucial considerations when working with AI systems, and Posthog takes these issues seriously. It follows industry best practices and adheres to strict data protection regulations, ensuring that your data is kept safe and secure. Posthog provides robust security measures, such as encryption and access controls, to ensure the confidentiality and integrity of your data. You can rest assured that your sensitive information is protected when using Posthog for your AI development needs.
+ Integrate seamlessly with your agentic frameworks
Composio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and Sizes
Building for AI across continents🧪