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 repository root
pip install -e .
Example Usage
import asyncio
from symvion import Symvion, TenantConfig
async def main():
config = TenantConfig(tenant_id="insurance_corp")
runtime = Symvion(config=config)
runtime.register_agent({
"name": "claim_processor",
"description": "Processes basic insurance claims",
"system_prompt": "You are a claim processor. Summarize the user's claim.",
"input_schema": {
"type": "object",
"properties": {"claim_text": {"type": "string"}}
},
"output_schema": {
"type": "object",
"properties": {"summary": {"type": "string"}, "is_valid": {"type": "boolean"}}
},
"tools": []
})
response = await runtime.chat(
tenant="insurance_corp",
agent_name="claim_processor",
payload_data={"claim_text": "I crashed my car on the highway"}
)
print("Response:")
print(response)
if __name__ == "__main__":
asyncio.run(main())
Project details
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.3.0.tar.gz
(200.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
symvion-0.3.0-py3-none-any.whl
(58.1 kB
view details)
File details
Details for the file symvion-0.3.0.tar.gz.
File metadata
- Download URL: symvion-0.3.0.tar.gz
- Upload date:
- Size: 200.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6566b8c7b30d948e1356ee21359eea5e6bbac1f02664502546f60cdacb4f0de9
|
|
| MD5 |
de86621e3af259df6f489149178208e6
|
|
| BLAKE2b-256 |
476afdaf0ec0d64f396157a88ba52b8aa86d54ea7bb8089fea38e0240e2b22c1
|
File details
Details for the file symvion-0.3.0-py3-none-any.whl.
File metadata
- Download URL: symvion-0.3.0-py3-none-any.whl
- Upload date:
- Size: 58.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 |
1a2ffa9704202423985a5354b09e795b372a8e8670ce0fb4196057dff3f6d95b
|
|
| MD5 |
15ce79d92901625d84a739b1bc2a54ea
|
|
| BLAKE2b-256 |
268d8c533517a4adfd4a029e91c858b4495c633fa6989e0ef289794f7398e551
|