composio-gemini 0.7.1__tar.gz → 0.7.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: composio_gemini
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: Use Composio to get an array of tools with your Gemini agent.
5
5
  Home-page: https://github.com/ComposioHQ/composio
6
6
  Author: Composio
@@ -1,6 +1,4 @@
1
- from composio import WorkspaceType, action
2
-
3
- from composio_langchain import Action, App, Tag, Trigger
1
+ from composio import Action, App, Tag, Trigger, WorkspaceType, action
4
2
 
5
3
  from .toolset import ComposioToolSet
6
4
 
@@ -78,7 +78,9 @@ class ComposioToolSet(
78
78
  closure=_execute.__closure__,
79
79
  )
80
80
  parameters = get_signature_format_from_schema_params(
81
- schema_params=schema.parameters.model_dump(),
81
+ schema_params=schema.parameters.model_dump(
82
+ exclude_none=True,
83
+ ),
82
84
  )
83
85
  setattr(function, "__signature__", Signature(parameters=parameters))
84
86
  setattr(
@@ -95,6 +97,7 @@ class ComposioToolSet(
95
97
  apps: t.Optional[t.Sequence[AppType]] = None,
96
98
  tags: t.Optional[t.List[TagType]] = None,
97
99
  entity_id: t.Optional[str] = None,
100
+ check_connected_accounts: bool = True,
98
101
  ) -> t.List[t.Callable]:
99
102
  """
100
103
  Get composio tools wrapped as Google Genai SDK compatible function calling object.
@@ -114,5 +117,6 @@ class ComposioToolSet(
114
117
  apps=apps,
115
118
  tags=tags,
116
119
  _populate_requested=True,
120
+ check_connected_accounts=check_connected_accounts,
117
121
  )
118
122
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: composio_gemini
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: Use Composio to get an array of tools with your Gemini agent.
5
5
  Home-page: https://github.com/ComposioHQ/composio
6
6
  Author: Composio
@@ -9,7 +9,7 @@ from setuptools import setup
9
9
 
10
10
  setup(
11
11
  name="composio_gemini",
12
- version="0.7.1",
12
+ version="0.7.2",
13
13
  author="Composio",
14
14
  author_email="tech@composio.dev",
15
15
  description="Use Composio to get an array of tools with your Gemini agent.",