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.1.0.tar.gz
(82.9 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.1.0-py3-none-any.whl
(48.8 kB
view details)
File details
Details for the file symvion-0.1.0.tar.gz.
File metadata
- Download URL: symvion-0.1.0.tar.gz
- Upload date:
- Size: 82.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00bd79d7543bc791c5cb51e87e9851591e47e9f5f93c7613d851e0cc6d01f846
|
|
| MD5 |
55447422216a6f4e03a77073cfa72fb5
|
|
| BLAKE2b-256 |
44bce1b8686e8c9a97a57ac2b34357011e5af6dbb4980e99e6e377fbd70df6f2
|
File details
Details for the file symvion-0.1.0-py3-none-any.whl.
File metadata
- Download URL: symvion-0.1.0-py3-none-any.whl
- Upload date:
- Size: 48.8 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 |
b7f1f216b47127d5b36f67c4fb3e577b510d7478c547b4d12133638e572e8156
|
|
| MD5 |
7021f8d81f79c7e87c7069d7bc84fd2b
|
|
| BLAKE2b-256 |
795ebabe54cc3ddb9d3418a06b919fe8e040907ff52f43881dc663a1fca817a5
|