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.4.tar.gz
(209.8 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.4-py3-none-any.whl
(68.7 kB
view details)
File details
Details for the file symvion-0.3.4.tar.gz.
File metadata
- Download URL: symvion-0.3.4.tar.gz
- Upload date:
- Size: 209.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9a28bc4d06475e22283964707127a368646750a794ccf3bae7a5535985186ae
|
|
| MD5 |
e5ebebe1c5011677570d5e110e46b173
|
|
| BLAKE2b-256 |
0caafed00c006cda29188e89f27d63fad305b9f01cf97b8af95d37c15871d9b7
|
File details
Details for the file symvion-0.3.4-py3-none-any.whl.
File metadata
- Download URL: symvion-0.3.4-py3-none-any.whl
- Upload date:
- Size: 68.7 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 |
d54319070e7109d9442aa3f3661f666aac1b6ef6a64338f2092976b578bd9084
|
|
| MD5 |
850b6c3167f4ea61ea4fd8655e13aa5d
|
|
| BLAKE2b-256 |
83a0844bf8ebc0b3a89316d645f9783052f363f23cfc25e48b494ae4f207e1da
|