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.3.tar.gz
(208.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.3-py3-none-any.whl
(67.3 kB
view details)
File details
Details for the file symvion-0.3.3.tar.gz.
File metadata
- Download URL: symvion-0.3.3.tar.gz
- Upload date:
- Size: 208.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 |
1fd0511e260f12fc3cfe4a2940df6302044ea292d12495c0fa6b776fb53e0898
|
|
| MD5 |
e1e1a0936c85a9dda0d6cce487205cea
|
|
| BLAKE2b-256 |
753d0ea7b0ef720279e7fea0b38543ec356f34d8603e08ded08ce33050c93630
|
File details
Details for the file symvion-0.3.3-py3-none-any.whl.
File metadata
- Download URL: symvion-0.3.3-py3-none-any.whl
- Upload date:
- Size: 67.3 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 |
501235ef3eca958cd93ea1b5a5577a89fc4d74b7be8249a7f464839507e4aec7
|
|
| MD5 |
7fd770dd9cdb5eec7c77f02162c67b01
|
|
| BLAKE2b-256 |
5affd68ee6c32aa9d7c40aae5a45bb366b024bfc5f7d6604ee571429de4bd7ff
|