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.2.tar.gz
(202.7 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.2-py3-none-any.whl
(60.5 kB
view details)
File details
Details for the file symvion-0.3.2.tar.gz.
File metadata
- Download URL: symvion-0.3.2.tar.gz
- Upload date:
- Size: 202.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2e586d2acb750fd42737ed2452ebd97d01b097f2ae98cac8cde8663708fb515
|
|
| MD5 |
e3f025e3c472c9481d1ffd68c5f0f400
|
|
| BLAKE2b-256 |
27b12384c9b1ef73f610e5e77728efa510f357916c0763036f5ef9f2ee84fcdb
|
File details
Details for the file symvion-0.3.2-py3-none-any.whl.
File metadata
- Download URL: symvion-0.3.2-py3-none-any.whl
- Upload date:
- Size: 60.5 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 |
f0c26ddf2c1fbcda53a1aa54dd148ecac1382d1bfb83ca7e6e852dcaa02baf23
|
|
| MD5 |
be5dc2515ad4e57ded02c64379befa62
|
|
| BLAKE2b-256 |
f63f549d5c7cd3f2f0729c8f7d36c5b558a4a0718dcddd26ab0b72213d92c32d
|