GentisAI
Health Pass
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 10 GitHub stars
Code Pass
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
The lightweight framework for real-time routing based AI agents.
GentisAI
GentisAI is a small Python package for building multi-expert AI agent POCs with a simple mental model:
Expert + Router + Flow
It is designed for interactive chat, support, sales, copilots, and other workflows where routing should be explicit, fast, and easy to test. GentisAI keeps low orchestration overhead by avoiding hidden manager loops, while still leaving an optional bridge to LangGraph for durable workflows.
Install
pip install gentis-ai
The default install only includes the tiny core and pydantic. Provider SDKs are optional:
pip install "gentis-ai[gemini]"
pip install "gentis-ai[openai]"
pip install "gentis-ai[ollama]"
pip install "gentis-ai[langgraph]"
Quick Start
This example runs offline with no API key.
from gentis_ai import Expert, Flow, Router
from gentis_ai.llm import MockLLM
llm = MockLLM(
routing_rules={
"help": "support",
"buy": "sales",
},
responses={
"help": "I can help troubleshoot that issue.",
"buy": "I can walk you through plans and pricing.",
},
default_response="I can route that to the right expert.",
)
support = Expert(name="support", description="Handles technical support.")
sales = Expert(name="sales", description="Handles sales and pricing.")
router = Router(experts=[support, sales], llm=llm)
flow = Flow(router=router, llm=llm)
response = flow.process_turn(
"I need help with my account.",
session_id="demo-user",
)
print(response.agent_name)
print(response.content)
Core Concepts
Expert: a persona with a name, description, optional system prompt, and optional tools.Router: selects one or more experts and returns a validatedRoutingDecision.Flow: manages routing, session history, expert execution, streaming events, and responses.SessionStore: stores state in memory or SQLite.BaseLLM: provider-neutral interface for mock, Gemini, Ollama, Bedrock, and OpenAI-compatible adapters.
Structured Routing
Router.classify() returns a RoutingDecision:
decision = router.classify("I want pricing help", "orchestrator")
print(decision.experts)
print(decision.confidence)
Older code can use router.classify_names(...) to get a list[str].
For zero-LLM routing, pass deterministic rules:
router = Router(
experts=[support, sales],
llm=None,
rules={"help": "support", "buy": "sales"},
)
Sessions
Use explicit session_id values in production so users do not share state:
response = flow.process_turn("hello", session_id="customer-123")
SQLite persistence is built in:
from gentis_ai import SQLiteSessionStore
flow = Flow(
router=router,
llm=llm,
session_store=SQLiteSessionStore("gentis.db"),
)
Anonymous calls are allowed, but each call receives a fresh anonymous session.
Streaming
Core runtime does not print. Use stream_turn() and decide how your app displays events:
for event in flow.stream_turn("Tell me a story", session_id="demo"):
if event.type == "token":
print(event.content, end="", flush=True)
elif event.type == "final":
print()
Async variants are available:
response = await flow.aprocess_turn("hello", session_id="demo")
async for event in flow.astream_turn("hello", session_id="demo"):
...
Providers
All provider adapters implement the same BaseLLM contract.
from gentis_ai.llm import OpenAICompatibleLLM
llm = OpenAICompatibleLLM(
model_name="gpt-4o-mini",
api_key="...",
base_url="https://api.openai.com/v1",
)
Helpful extras:
- Gemini:
pip install "gentis-ai[gemini]" - OpenAI-compatible and Azure:
pip install "gentis-ai[openai]" - AWS Bedrock:
pip install "gentis-ai[bedrock]" - Ollama:
pip install "gentis-ai[ollama]" - LangGraph bridge:
pip install "gentis-ai[langgraph]"
See examples/cloud_providers_example.py for provider selection by environment variable.
Tools
GentisAI includes reusable tool schema, registry, and executor primitives:
from gentis_ai.tools import ToolExecutor, ToolRegistry
def add(a: int, b: int) -> int:
return a + b
registry = ToolRegistry()
registry.register(add)
executor = ToolExecutor(registry, approval_policy={"delete_file": "always"})
result = executor.execute("add", {"a": 2, "b": 3})
LangGraph Bridge
GentisAI stays simple by default. Use LangGraph when you need checkpointed, durable, multi-node workflows:
from gentis_ai.adapters.langgraph import to_langgraph
graph = to_langgraph(flow)
import gentis_ai never imports LangGraph.
CLI
gentis new support-agent
gentis run
gentis eval
gentis bench
Documentation And Examples
docs/getting-started.mddocs/api-reference.mddocs/features/streaming.mdexamples/quick_mock_start.pyexamples/cloud_providers_example.pybenchmarks/README_comparison.md
Development
pip install -e ".[dev]"
python -m pytest
License
MIT. See LICENSE.
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found