Skip to content

Commit

Permalink
chore: Release v0.6.10 (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
tushar-composio authored Jan 2, 2025
1 parent 7c3d5e3 commit b5d20cd
Show file tree
Hide file tree
Showing 22 changed files with 45 additions and 22 deletions.
2 changes: 1 addition & 1 deletion python/composio/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.9"
__version__ = "0.6.10"
22 changes: 22 additions & 0 deletions python/composio/client/enums/action.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions python/composio/client/enums/app.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -289,3 +290,4 @@ class App(Enum[AppData], metaclass=EnumGenerator):
ZOHO_INVOICE: "App"
ZOHO_MAIL: "App"
ZOOM: "App"
ZOOMINFO: "App"
1 change: 1 addition & 0 deletions python/composio/client/enums/tag.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 2 additions & 4 deletions python/composio/server/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/autogen/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_autogen",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Autogen agent.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/camel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_camel",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Claude LLMs.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/claude/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_claude",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Claude LLMs.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/crew_ai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_crewai",
version="0.6.9",
version="0.6.10",
author="Himanshu",
author_email="[email protected]",
description="Use Composio to get an array of tools with your CrewAI agent.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/google/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_google",
version="0.6.9",
version="0.6.10",
author="Assistant",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Google AI Python Gemini model.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/griptape/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_griptape",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Griptape workflow.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/julep/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_julep",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Julep workflow.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/langchain/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_langchain",
version="0.6.9",
version="0.6.10",
author="Karan",
author_email="[email protected]",
description="Use Composio to get an array of tools with your LangChain agent.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/langgraph/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_langgraph",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get array of tools with LangGraph Agent Workflows",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/llamaindex/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_llamaindex",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your LlamaIndex agent.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/lyzr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_lyzr",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Lyzr workflow.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/openai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_openai",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your OpenAI Function Call.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/phidata/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_phidata",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Phidata Plugin.",
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/praisonai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_praisonai",
version="0.6.9",
version="0.6.10",
author="Sawradip",
author_email="[email protected]",
description="Use Composio Tools to enhance your PraisonAI agents capabilities.",
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
description="Core package to act as a bridge between composio platform and other services.",
Expand Down
2 changes: 1 addition & 1 deletion python/swe/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def scan_for_package_data(

setup(
name="swekit",
version="0.3.10",
version="0.3.11",
author="Shubhra",
author_email="[email protected]",
description="Tools for running a SWE agent using Composio platform",
Expand Down

0 comments on commit b5d20cd

Please sign in to comment.