Multi-tenant AI orchestration framework powered by LangGraph.
Project description
Symvion AI Runtime
A multi-tenant AI orchestration framework powered by LangGraph.
Core Capabilities
Symvion provides a clean, modular Python package that supports:
- Multi-tenant orchestration with isolated contexts
- Dynamic agent registration via APIs (stating payloads and expected responses schemas)
- Abstracted Tool/function calling
- Observability hooks and state routing via LangGraph
Installation
# From the pypi
pip install symvion
Example Usage
import asyncio
from symvion import Symvion, TenantConfig
async def main():
config = TenantConfig(tenant_id="acme_corp")
runtime = Symvion(config=config)
runtime.register_agent({
"name": "task_orchestrator",
"description": "Orchestrates general tasks and queries",
"system_prompt": "You are a helpful task orchestrator. Help the user with their request.",
"input_schema": {
"type": "object",
"properties": {"task_description": {"type": "string"}}
},
"output_schema": {
"type": "object",
"properties": {"action_plan": {"type": "string"}, "is_complete": {"type": "boolean"}}
},
"tools": []
})
response = await runtime.chat(
tenant="acme_corp",
agent_name="task_orchestrator",
payload_data={"task_description": "Organize my daily schedule and send notifications."}
)
print("Response:")
print(response)
if __name__ == "__main__":
asyncio.run(main())
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
symvion-0.4.5.tar.gz
(230.6 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
symvion-0.4.5-py3-none-any.whl
(86.1 kB
view details)
File details
Details for the file symvion-0.4.5.tar.gz.
File metadata
- Download URL: symvion-0.4.5.tar.gz
- Upload date:
- Size: 230.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9b7ade54e87fe8fa156a5048d660430b6e53141742618deed3f94a4d14d7a5c
|
|
| MD5 |
54d0b7574035e84250d408b61eed9c5e
|
|
| BLAKE2b-256 |
f7d28b3e953fa3edbd6cef75b7f13566438c6de941bf047a63c2b789e8a25b9f
|
File details
Details for the file symvion-0.4.5-py3-none-any.whl.
File metadata
- Download URL: symvion-0.4.5-py3-none-any.whl
- Upload date:
- Size: 86.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36d56e97cae04aab45893e08d4158ceb679043451bd7e7324894f5ef7fccc899
|
|
| MD5 |
2dcee6e7f2acaf79989006d478d3661c
|
|
| BLAKE2b-256 |
e9f98d508f32a203c76e4ad1558e96ee3ed17e3b4348e1e94874d7c4457f3f4c
|