From b5d20cd5d484f6e8a85da16f16b9e97005dada2d Mon Sep 17 00:00:00 2001 From: tushar-composio Date: Thu, 2 Jan 2025 13:55:27 +0530 Subject: [PATCH] chore: Release v0.6.10 (#1123) --- python/composio/__version__.py | 2 +- python/composio/client/enums/action.pyi | 22 ++++++++++++++++++++++ python/composio/client/enums/app.pyi | 2 ++ python/composio/client/enums/tag.pyi | 1 + python/composio/server/api.py | 6 ++---- python/dockerfiles/Dockerfile | 2 +- python/plugins/autogen/setup.py | 2 +- python/plugins/camel/setup.py | 2 +- python/plugins/claude/setup.py | 2 +- python/plugins/crew_ai/setup.py | 2 +- python/plugins/google/setup.py | 2 +- python/plugins/griptape/setup.py | 2 +- python/plugins/julep/setup.py | 2 +- python/plugins/langchain/setup.py | 2 +- python/plugins/langgraph/setup.py | 2 +- python/plugins/llamaindex/setup.py | 2 +- python/plugins/lyzr/setup.py | 2 +- python/plugins/openai/setup.py | 2 +- python/plugins/phidata/setup.py | 2 +- python/plugins/praisonai/setup.py | 2 +- python/setup.py | 2 +- python/swe/setup.py | 2 +- 22 files changed, 45 insertions(+), 22 deletions(-) diff --git a/python/composio/__version__.py b/python/composio/__version__.py index 5c2c6c53ea8..54149df1f8d 100644 --- a/python/composio/__version__.py +++ b/python/composio/__version__.py @@ -1 +1 @@ -__version__ = "0.6.9" +__version__ = "0.6.10" diff --git a/python/composio/client/enums/action.pyi b/python/composio/client/enums/action.pyi index d865385da1d..18c04cad42c 100644 --- a/python/composio/client/enums/action.pyi +++ b/python/composio/client/enums/action.pyi @@ -3815,6 +3815,10 @@ class Action(Enum[ActionData], metaclass=EnumGenerator): GOOGLETASKS_LIST_TASK_LISTS: "Action" GOOGLETASKS_PATCH_TASK: "Action" GOOGLETASKS_PATCH_TASK_LIST: "Action" + GOOGLE_MAPS_GET_DIRECTION: "Action" + GOOGLE_MAPS_GET_ROUTE: "Action" + GOOGLE_MAPS_NEARBY_SEARCH: "Action" + GOOGLE_MAPS_TEXT_SEARCH: "Action" GREPTILE_CODE_QUERY: "Action" HACKERNEWS_GET_FRONTPAGE: "Action" HACKERNEWS_GET_ITEM_WITH_ID: "Action" @@ -5272,8 +5276,11 @@ class Action(Enum[ActionData], metaclass=EnumGenerator): OUTLOOK_OUTLOOK_GET_MESSAGE: "Action" OUTLOOK_OUTLOOK_GET_PROFILE: "Action" OUTLOOK_OUTLOOK_GET_SCHEDULE: "Action" + OUTLOOK_OUTLOOK_LIST_CONTACTS: "Action" + OUTLOOK_OUTLOOK_LIST_EVENTS: "Action" OUTLOOK_OUTLOOK_LIST_MESSAGES: "Action" OUTLOOK_OUTLOOK_REPLY_EMAIL: "Action" + OUTLOOK_OUTLOOK_SEARCH_MESSAGES: "Action" OUTLOOK_OUTLOOK_SEND_EMAIL: "Action" OUTLOOK_OUTLOOK_UPDATE_CALENDAR_EVENT: "Action" OUTLOOK_OUTLOOK_UPDATE_CONTACT: "Action" @@ -7813,6 +7820,7 @@ class Action(Enum[ActionData], metaclass=EnumGenerator): ZENDESK_GET_ABOUT_ME: "Action" ZENDESK_GET_ALL_ZENDESK_ORGANIZATIONS: "Action" ZENDESK_GET_ZENDESK_ORGANIZATION: "Action" + ZENDESK_REPLY_ZENDESK_TICKET: "Action" ZENDESK_UPDATE_ZENDESK_ORGANIZATION: "Action" ZENROWS_SCRAPE_URL: "Action" ZEPTOOL_ADD_MEMORY: "Action" @@ -7825,6 +7833,20 @@ class Action(Enum[ActionData], metaclass=EnumGenerator): ZOHO_GET_ZOHO_RECORDS: "Action" ZOHO_UPDATE_RELATED_RECORDS: "Action" ZOHO_UPDATE_ZOHO_RECORD: "Action" + ZOOMINFO_ENRICH_COMPANY: "Action" + ZOOMINFO_ENRICH_CONTACT: "Action" + ZOOMINFO_ENRICH_LOCATION: "Action" + ZOOMINFO_ENRICH_TECHNOLOGY: "Action" + ZOOMINFO_SEARCH_COMPANY: "Action" + ZOOMINFO_SEARCH_COMPANY_INPUT: "Action" + ZOOMINFO_SEARCH_CONTACT: "Action" + ZOOMINFO_SEARCH_CONTACT_INPUT: "Action" + ZOOMINFO_SEARCH_INTENT: "Action" + ZOOMINFO_SEARCH_INTENT_INPUT: "Action" + ZOOMINFO_SEARCH_NEWS: "Action" + ZOOMINFO_SEARCH_NEWS_INPUT: "Action" + ZOOMINFO_SEARCH_SCOOP: "Action" + ZOOMINFO_SEARCH_SCOOP_INPUT: "Action" ZOOM_ADD_A_MEETING_REGISTRANT: "Action" ZOOM_ADD_A_NEW_DEVICE: "Action" ZOOM_ADD_A_USER_S_TSP_ACCOUNT: "Action" diff --git a/python/composio/client/enums/app.pyi b/python/composio/client/enums/app.pyi index e03c2ed5d5b..bd6f42f5c81 100644 --- a/python/composio/client/enums/app.pyi +++ b/python/composio/client/enums/app.pyi @@ -133,6 +133,7 @@ class App(Enum[AppData], metaclass=EnumGenerator): GOOGLESHEETS: "App" GOOGLETASKS: "App" GOOGLE_ANALYTICS: "App" + GOOGLE_MAPS: "App" GORGIAS: "App" GO_TO_WEBINAR: "App" GREPTILE: "App" @@ -289,3 +290,4 @@ class App(Enum[AppData], metaclass=EnumGenerator): ZOHO_INVOICE: "App" ZOHO_MAIL: "App" ZOOM: "App" + ZOOMINFO: "App" diff --git a/python/composio/client/enums/tag.pyi b/python/composio/client/enums/tag.pyi index 274c98cc455..c513d36f0e7 100644 --- a/python/composio/client/enums/tag.pyi +++ b/python/composio/client/enums/tag.pyi @@ -698,6 +698,7 @@ class Tag(Enum[TagData], metaclass=EnumGenerator): NOTION_IMPORTANT: "Tag" OUTLOOK_EMAIL: "Tag" OUTLOOK_IMPORTANT: "Tag" + OUTLOOK_SEARCH: "Tag" PAGERDUTY_ABILITIES: "Tag" PAGERDUTY_ADD_ONS: "Tag" PAGERDUTY_ALERT_GROUPING_SETTINGS: "Tag" diff --git a/python/composio/server/api.py b/python/composio/server/api.py index bd14132a82d..744db91c98d 100644 --- a/python/composio/server/api.py +++ b/python/composio/server/api.py @@ -21,7 +21,7 @@ from fastapi.responses import FileResponse from pydantic import BaseModel, Field -from composio import Action, App +from composio import Action, App, __version__ from composio.cli.context import get_context from composio.client.collections import ActionModel, AppModel from composio.client.enums.base import get_runtime_actions @@ -155,9 +155,7 @@ async def add_process_time_header(request: Request, call_next): @with_exception_handling def _api() -> GetApiResponse: """Composio tooling server API root.""" - return GetApiResponse( - version="0.3.20", - ) + return GetApiResponse(version=__version__) @app.get("/api/apps", response_model=APIResponse[t.List[AppModel]]) @with_exception_handling diff --git a/python/dockerfiles/Dockerfile b/python/dockerfiles/Dockerfile index 953b722c77c..7d90a449d2e 100644 --- a/python/dockerfiles/Dockerfile +++ b/python/dockerfiles/Dockerfile @@ -19,7 +19,7 @@ RUN /bin/python3 -m venv .composio/venv RUN export PATH=$PATH:$(pwd)/.composio/venv/bin # Install composio -RUN python -m pip install composio-core[all]==0.6.9 fastapi playwright uvicorn +RUN python -m pip install composio-core[all]==0.6.10 fastapi playwright uvicorn # Install playwright deps RUN playwright install-deps diff --git a/python/plugins/autogen/setup.py b/python/plugins/autogen/setup.py index 391631d0d90..25094bbfdec 100644 --- a/python/plugins/autogen/setup.py +++ b/python/plugins/autogen/setup.py @@ -9,7 +9,7 @@ setup( name="composio_autogen", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Autogen agent.", diff --git a/python/plugins/camel/setup.py b/python/plugins/camel/setup.py index d7536426eda..f24cb98817e 100644 --- a/python/plugins/camel/setup.py +++ b/python/plugins/camel/setup.py @@ -9,7 +9,7 @@ setup( name="composio_camel", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Claude LLMs.", diff --git a/python/plugins/claude/setup.py b/python/plugins/claude/setup.py index 9d2f75cd83c..9bbb81a8e37 100644 --- a/python/plugins/claude/setup.py +++ b/python/plugins/claude/setup.py @@ -9,7 +9,7 @@ setup( name="composio_claude", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Claude LLMs.", diff --git a/python/plugins/crew_ai/setup.py b/python/plugins/crew_ai/setup.py index 8678ea57b7d..7fc9fa824a2 100644 --- a/python/plugins/crew_ai/setup.py +++ b/python/plugins/crew_ai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_crewai", - version="0.6.9", + version="0.6.10", author="Himanshu", author_email="himanshu@composio.dev", description="Use Composio to get an array of tools with your CrewAI agent.", diff --git a/python/plugins/google/setup.py b/python/plugins/google/setup.py index 29203084943..32397561d8f 100644 --- a/python/plugins/google/setup.py +++ b/python/plugins/google/setup.py @@ -9,7 +9,7 @@ setup( name="composio_google", - version="0.6.9", + version="0.6.10", author="Assistant", author_email="karan@composio.dev", description="Use Composio to get an array of tools with your Google AI Python Gemini model.", diff --git a/python/plugins/griptape/setup.py b/python/plugins/griptape/setup.py index 315b7558328..b718b66239e 100644 --- a/python/plugins/griptape/setup.py +++ b/python/plugins/griptape/setup.py @@ -9,7 +9,7 @@ setup( name="composio_griptape", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Griptape workflow.", diff --git a/python/plugins/julep/setup.py b/python/plugins/julep/setup.py index d4a9f7364df..b2ad9120d03 100644 --- a/python/plugins/julep/setup.py +++ b/python/plugins/julep/setup.py @@ -9,7 +9,7 @@ setup( name="composio_julep", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Julep workflow.", diff --git a/python/plugins/langchain/setup.py b/python/plugins/langchain/setup.py index d4d6e51dfea..f1e545e4ee4 100644 --- a/python/plugins/langchain/setup.py +++ b/python/plugins/langchain/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langchain", - version="0.6.9", + version="0.6.10", author="Karan", author_email="karan@composio.dev", description="Use Composio to get an array of tools with your LangChain agent.", diff --git a/python/plugins/langgraph/setup.py b/python/plugins/langgraph/setup.py index 1d28bf2a499..ea02a928f2d 100644 --- a/python/plugins/langgraph/setup.py +++ b/python/plugins/langgraph/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langgraph", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get array of tools with LangGraph Agent Workflows", diff --git a/python/plugins/llamaindex/setup.py b/python/plugins/llamaindex/setup.py index 51abb652b90..92c5c03c008 100644 --- a/python/plugins/llamaindex/setup.py +++ b/python/plugins/llamaindex/setup.py @@ -9,7 +9,7 @@ setup( name="composio_llamaindex", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your LlamaIndex agent.", diff --git a/python/plugins/lyzr/setup.py b/python/plugins/lyzr/setup.py index d88996e9eb3..199b25fa942 100644 --- a/python/plugins/lyzr/setup.py +++ b/python/plugins/lyzr/setup.py @@ -9,7 +9,7 @@ setup( name="composio_lyzr", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Lyzr workflow.", diff --git a/python/plugins/openai/setup.py b/python/plugins/openai/setup.py index 16eaa4cdb86..282472e1e04 100644 --- a/python/plugins/openai/setup.py +++ b/python/plugins/openai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_openai", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your OpenAI Function Call.", diff --git a/python/plugins/phidata/setup.py b/python/plugins/phidata/setup.py index d3a003ef803..3278254a3f6 100644 --- a/python/plugins/phidata/setup.py +++ b/python/plugins/phidata/setup.py @@ -9,7 +9,7 @@ setup( name="composio_phidata", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Phidata Plugin.", diff --git a/python/plugins/praisonai/setup.py b/python/plugins/praisonai/setup.py index f2583bb1b59..dccd3acd665 100644 --- a/python/plugins/praisonai/setup.py +++ b/python/plugins/praisonai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_praisonai", - version="0.6.9", + version="0.6.10", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio Tools to enhance your PraisonAI agents capabilities.", diff --git a/python/setup.py b/python/setup.py index 7633d97b31f..31d1a30e5d9 100644 --- a/python/setup.py +++ b/python/setup.py @@ -88,7 +88,7 @@ def scan_for_package_data( setup( name="composio_core", - version="0.6.9", + version="0.6.10", author="Utkarsh", author_email="utkarsh@composio.dev", description="Core package to act as a bridge between composio platform and other services.", diff --git a/python/swe/setup.py b/python/swe/setup.py index 96b1d407272..b67432409d8 100644 --- a/python/swe/setup.py +++ b/python/swe/setup.py @@ -35,7 +35,7 @@ def scan_for_package_data( setup( name="swekit", - version="0.3.10", + version="0.3.11", author="Shubhra", author_email="shubhra@composio.dev", description="Tools for running a SWE agent using Composio platform",