Gentoro Python SDK for AI tool execution and authentication
Project description
Gentoro Python SDK
Overview
Welcome to the Gentoro Python SDK documentation. This guide will help you integrate and use the SDK in your project.
Supported Python Versions
This SDK is compatible with Python >= 3.7.
Installation
To get started with the SDK, install it using pip:
pip install Gentoro==0.1.2
Authentication
The Gentoro API uses an API Key (X-API-Key) for authentication. You must provide this key when making API requests.
To obtain an API Key, register at Gentoro's API Portal.
Setting the API Key
When initializing the SDK, provide the configuration as follows:
from Gentoro import Gentoro, SdkConfig, Authentication, AuthenticationScope, Providers
config = SdkConfig(
api_key="your_api_key_here", # Your Gentoro API Key
base_url="https://gentoro.com", # Base URL where the Gentoro API is hosted
auth_mod_base_url="https://gentoro.com/auth", # Authentication module base URL
provider=Providers.OPENAI,
authentication=Authentication(scope=AuthenticationScope.API_KEY)
)
gentoro_instance = Gentoro(config)
bridge_uid = "BRIDGE_ID" # Example bridge UID
# Fetch tools
tools = gentoro_instance.get_tools(bridge_uid)
print("Fetched tools:", tools)
# Execute a tool
tool_calls = [
{
"id": "tool_123",
"type": "function",
"details": {"name": "example_tool", "arguments": "{}"}
}
]
execution_result = gentoro_instance.run_tools(bridge_uid, messages=[], tool_calls=tool_calls)
print("Execution result:", execution_result)
SDK Services
Methods
get_tools(bridge_uid: str, messages: Optional[List[Dict]] = None) -> List[Dict]
Fetches available tools for a specific bridge_uid.
Example usage:
tools = gentoro_instance.get_tools("BRIDGE_ID", messages=[])
print("Tools:", tools)
run_tools(bridge_uid: str, messages: List[Dict], tool_calls: List[Dict]) -> List[Dict]
Executes the tools requested by the AI model.
Example usage:
execution_result = gentoro_instance.run_tools("BRIDGE_ID", messages=[], tool_calls=tool_calls)
print("Execution Result:", execution_result)
Providers
A provider defines how the SDK should handle and generate content:
class Providers(str, Enum):
OPENAI = "openai"
ANTHROPIC = "anthropic"
OPENAI_ASSISTANTS = "openai_assistants"
VERCEL = "vercel"
GENTORO = "gentoro"
License
This SDK is licensed under the Apache-2.0 License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Gentoro-0.1.2.tar.gz.
File metadata
- Download URL: Gentoro-0.1.2.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97406e1d769689b48c116db3cd88865909096ccea6c1781f6cee8c9077900eb8
|
|
| MD5 |
c9b75f094d8853141fb84632048e8bee
|
|
| BLAKE2b-256 |
103328f91aa627175320f834b366f9a9085d085c1966e9c23dc39a857a91de46
|
File details
Details for the file Gentoro-0.1.2-py3-none-any.whl.
File metadata
- Download URL: Gentoro-0.1.2-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0381208d06eef8090d944462d011e1190d16ecdd1532e63c3b6630582622a6e
|
|
| MD5 |
4cce5ae5110b9b8647d04d9ed1268cb2
|
|
| BLAKE2b-256 |
1fab31ec7598fe9e412cb93d01693b6de3b6dcacf167d535fe89867d0b3d2cf4
|