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.5.tar.gz
(210.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.5-py3-none-any.whl
(69.6 kB
view details)
File details
Details for the file symvion-0.3.5.tar.gz.
File metadata
- Download URL: symvion-0.3.5.tar.gz
- Upload date:
- Size: 210.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 |
68492a35b6288c9680cb6a085df583b7731945b9a11f6b535d19dc9bc9529e9b
|
|
| MD5 |
ea75bf9cbd1cf14a564bf01da6efaf49
|
|
| BLAKE2b-256 |
e4de9d333266e38e40fcd9061dfd5f2942e3c93c12ffac436e8eaa5c991ff384
|
File details
Details for the file symvion-0.3.5-py3-none-any.whl.
File metadata
- Download URL: symvion-0.3.5-py3-none-any.whl
- Upload date:
- Size: 69.6 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 |
a13889b7370e20913c44a528dbc50522029e2b2a69a147726f8c95eeb0cce516
|
|
| MD5 |
0975e87c484557f62609560112dee503
|
|
| BLAKE2b-256 |
4d47b923b4654947bb25b0a86030773507c574a89b74aaca624d77cfcb8d1786
|