composio-gemini
Adapts Composio tools to the google-genai SDK as Python callables compatible with Gemini's Automatic Function Calling.
Installation
pip install composio composio-gemini google-genai
Set COMPOSIO_API_KEY (create one at https://dashboard.composio.dev/settings) and GOOGLE_API_KEY (from https://aistudio.google.com/apikey) in your environment.
Quickstart
GeminiProvider wraps each Composio tool as a typed Python callable. Pass the callables to GenerateContentConfig(tools=...) and the google-genai SDK derives function declarations from their signatures and executes tool calls automatically inside the chat loop; there is no manual tool-call handling.
from composio import Composio
from composio_gemini import GeminiProvider
from google import genai
from google.genai import types
composio = Composio(provider=GeminiProvider())
client = genai.Client()
# Create a session for your user
session = composio.create(user_id="user_123")
tools = session.tools()
config = types.GenerateContentConfig(tools=tools)
chat = client.chats.create(model="gemini-3-pro-preview", config=config)
response = chat.send_message(
"Send an email to john@example.com with the subject 'Hello' and body 'Hello from Composio!'"
)
print(response.text)
If you disable Automatic Function Calling and handle function calls yourself, composio.provider.handle_response(response) executes the function calls in a Gemini response and returns Part objects ready to send back.
composio-gemini vs composio-google
This package targets the google-genai SDK (from google import genai). composio-google targets the older Vertex AI SDK (vertexai.generative_models). For new projects, Google recommends google-genai, so use this package.
Links
- Google provider docs: https://docs.composio.dev/docs/providers/google
- Composio docs: https://docs.composio.dev
Release files for composio-gemini 0.22.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| composio_gemini-0.22.0.tar.gz | 5.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| composio_gemini-0.22.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 10.6 kB
Release files / composio_gemini-0.22.0.tar.gz
| Download URL | composio_gemini-0.22.0.tar.gz |
|---|---|
| Size | 5.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
38343716032c950fa7b9bd3f135f375ca3996cf0338745de2fc86760d6b55d3f
|
|
BLAKE2b-256 checksum How to use checksums |
17a47b2ebbc01a237993a0ba307666b4f644c2935b4608318ff02992794828ee
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / composio_gemini-0.22.0-py3-none-any.whl
| Download URL | composio_gemini-0.22.0-py3-none-any.whl |
|---|---|
| Size | 5.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
80b57aab6ed721c3cfa9ff3842efa12f0cf4cbd4805b05508bb5976a586d8057
|
|
BLAKE2b-256 checksum How to use checksums |
e2f36d2afff657df1d660733da9a8612f1d167663d8d1a171d7e0cd054f989b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|