AI Agents FrameworkAgentOS module for production deployment of AI agents.This module provides the AgentOS class which implements the AgentOSProtocol
from the core SDK. It wraps agents, teams, and flows into a unified
FastAPI-based web service.Example:
from praisonai import AgentOSfrom praisonaiagents import Agentassistant = Agent(name="assistant", instructions="Be helpful")app = AgentOS( name="My AI App", agents=[assistant],)app.serve(port=8000)