Fuzentry Python SDK
Official Python SDK for Fuzentry AI AgentOS PaaS Platform.
Installation
pip install fuzentry
Quick Start
from fuzentry import FuzentryClient
from fuzentry.agents import AgentsClient
from fuzentry.memory import MemoryClient
# Initialize client
client = FuzentryClient(api_key="fuz_your_api_key_here")
# Use agents
agents = AgentsClient(client)
result = agents.invoke(
message="Analyze this contract for risks",
folders=[{"id": "folder-123", "name": "Legal Docs"}]
)
print(f"Response: {result['response']}")
print(f"Tokens used: {result['tokensUsed']}")
# Store and search memories
memory = MemoryClient(client)
memory.store(
content="Q4 revenue was $2.5M",
folder_id="folder-123",
metadata={"quarter": "Q4", "year": "2024"}
)
results = memory.search("revenue", folder_id="folder-123", top_k=5)
Modules
fuzentry.auth- API key validation, session tokensfuzentry.agents- AI orchestration, chainingfuzentry.prompts- Prompt template managementfuzentry.memory- Vector search, semantic memoryfuzentry.plugins- MCP tools, OAuth integrationsfuzentry.exporter- Data export, compliance
Authentication
Get your API key from AWS Marketplace after subscribing.
Usage Tracking
All API calls are automatically metered through AWS Marketplace at $0.00030 per orchestration.
Documentation
Full documentation: https://docs.fuzentry.com
License
Proprietary - Licensed to AWS Marketplace customers only.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fuzentry-0.1.0.tar.gz
(9.0 kB
view details)
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 fuzentry-0.1.0.tar.gz.
File metadata
- Download URL: fuzentry-0.1.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92ee665f2dc50394a41ea43a494bb2d42a0f4cb66e35673a80c0aab2b236a46b
|
|
| MD5 |
de8212845a993966b233e5db7aecba8e
|
|
| BLAKE2b-256 |
5c3e49b43a04687f6cc321767179dbb3a98e69aa167d944638cfd2b463611ad4
|
File details
Details for the file fuzentry-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fuzentry-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea83185023ebf74f82ff6f1480a06d25d3a9dbf7405baa7a1f87dcb506bb56da
|
|
| MD5 |
73a07bfda0e60d277c9a7c1203610911
|
|
| BLAKE2b-256 |
0d0c9b80321c3c07b76b29d20cf80e52e550d809730d73f1156788d0e920e994
|