composio-gemini 1.0.0rc7__tar.gz → 1.0.0rc9__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.4
2
2
  Name: composio-gemini
3
- Version: 1.0.0rc7
3
+ Version: 1.0.0rc9
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
@@ -13,6 +13,8 @@ class GeminiProvider(AgenticProvider[t.Callable, list[t.Callable]], name="gemini
13
13
  Composio toolset for Google AI Python Gemini framework.
14
14
  """
15
15
 
16
+ __schema_skip_defaults__ = True
17
+
16
18
  def wrap_tool(
17
19
  self,
18
20
  tool: Tool,
@@ -40,7 +42,7 @@ class GeminiProvider(AgenticProvider[t.Callable, list[t.Callable]], name="gemini
40
42
  )
41
43
  parameters = function_signature_from_jsonschema(
42
44
  schema=tool.input_parameters,
43
- skip_default=True,
45
+ skip_default=self.skip_default,
44
46
  )
45
47
  setattr(function, "__signature__", Signature(parameters=parameters))
46
48
  setattr(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: composio-gemini
3
- Version: 1.0.0rc7
3
+ Version: 1.0.0rc9
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,6 @@
1
1
  [project]
2
2
  name = "composio-gemini"
3
- version = "1.0.0-rc7"
3
+ version = "1.0.0-rc9"
4
4
  description = "Use Composio to get an array of tools with your Gemini agent."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9,<4"
@@ -8,7 +8,7 @@ from setuptools import setup
8
8
 
9
9
  setup(
10
10
  name="composio_gemini",
11
- version="1.0.0-rc7",
11
+ version="1.0.0-rc9",
12
12
  author="Composio",
13
13
  author_email="tech@composio.dev",
14
14
  description="Use Composio to get an array of tools with your Gemini agent.",