Multi-Modal AI Agent System
Project description
xAgent - Multi-Modal AI Agent System
🚀 A powerful multi-modal AI Agent system with real-time streaming responses
xAgent provides an end-to-end AI assistant experience—covering text and image processing, concurrent tool execution, an intuitive HTTP server, a web interface, and a real-time streaming CLI—built with FastAPI, Streamlit, and Redis to scale in production.
📋 Table of Contents
- 🚀 Quick Start
- 🚀 Installation & Setup
- 🌐 HTTP Agent Server
- 🌐 Web Interface
- 💻 Command Line Interface (CLI)
- 🤖 Advanced Usage: Agent Class
- 🏗️ Architecture
- 🤖 API Reference
- 📊 Monitoring & Observability
- 🤝 Contributing
- 📄 License
🚀 Quick Start
To quickly start using xAgent, install the package and set your OpenAI API key. Then you can run the CLI or HTTP server to interact with your AI agent.
# Install xAgent
pip install myxagent
# Set your OpenAI API key
export OPENAI_API_KEY=your_openai_api_key
# Start the CLI with default configuration (interactive mode)
xagent-cli
# Or start the HTTP server with default configuration (for development)
xagent-server
If start a http server, you can interact with the agent using the following command:
# Basic chat request
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"session_id": "session456",
"user_message": "Who are you?",
"stream": false
}'
or start a Streamlit web interface to interact with the agent server:
xagent-web
More about cli and http server usage, please refer to the CLI and HTTP Agent Server sections.
🚀 Installation & Setup
Prerequisites
| Requirement | Version | Purpose |
|---|---|---|
| Python | 3.12+ | Core runtime |
| OpenAI API Key | - | AI model access |
Install via pip
pip install myxagent
# upgrade to the latest version
pip install --upgrade myxagent
# use official PyPI
pip install myxagent -i https://pypi.org/simple
# or use Aliyun mirror for faster download in China
pip install myxagent -i https://mirrors.aliyun.com/pypi/simple
Environment Configuration
Create a .env file in your project directory and add the following variables:
# Required
OPENAI_API_KEY=your_openai_api_key
# Optional - Redis persistence
REDIS_URL=your_redis_url_with_password
# Optional - Observability
LANGFUSE_SECRET_KEY=your_langfuse_key
LANGFUSE_PUBLIC_KEY=your_langfuse_public_key
LANGFUSE_HOST=https://cloud.langfuse.com
# Optional - Image upload to S3
AWS_ACCESS_KEY_ID=your_aws_access_key_id
AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key
AWS_REGION=us-east-1
BUCKET_NAME=your_bucket_name
🌐 HTTP Agent Server
The simplest way to use xAgent is through the HTTP server. Just create a config file and start serving!
1. Create Agent Configuration
Create agent_config.yaml:
agent:
name: "MyAgent"
system_prompt: |
You are a helpful assistant. Your task is to assist users with their queries and tasks.
model: "gpt-4.1-mini"
capabilities:
tools:
- "web_search" # Built-in web search
- "draw_image" # Built-in image generation (need set AWS credentials in .env)
- "calculate_square" # Custom tool from my_toolkit
server:
host: "0.0.0.0"
port: 8010
If you want to use MCP (Model Context Protocol) for dynamic tool loading, you can also add mcp_servers in agent configuration
Example for how to start a MCP server can be found in toolkit/mcp_server.py:
agent:
...
capabilities:
mcp_servers:
- "http://localhost:8001/mcp/" # MCP server URL
...
If you use Redis, you can set message_storage to redis (make sure to configure REDIS_URL in the .env file).
This way, when deploying multiple services, the conversation can remain consistent even if requests are routed to different service instances.
default value is local, which means the agent will use in-memory storage for messages and history.
agent:
...
message_storage: "redis" # Use Redis for message persistence
...
2. Create Custom Tools (Optional)
Create my_toolkit/ directory with __init__.py and your tool functions in script like your_tools.py:
# my_toolkit/__init__.py
from .your_tools import calculate_square, greet_user
# Agent will automatically discover these tools,you can choose which to load in agent config
TOOLKIT_REGISTRY = {
"calculate_square": calculate_square,
"fetch_weather": fetch_weather
}
implement your tools in your_tools.py:
# my_toolkit/your_tools.py
from xagent.utils.tool_decorator import function_tool
@function_tool()
def calculate_square(n: int) -> int:
"""Calculate the square of a number."""
return n * n
@function_tool()
async def fetch_weather(city: str) -> str:
"""Fetch weather data for a city (dummy implementation)."""
return f"The weather in {city} is sunny with a high of 25°C."
You can override the default tool name and description and add parameter descriptions using the function_tool decorator:
@function_tool(name="custom_square",
description="Calculate the square of a number",
param_descriptions={"n": "The number to square"}
def calculate_square(n: int) -> int:
"""Calculate the square of a number."""
return n * n
3. Start the Server
# Start the HTTP Agent Server with default configuration
xagent-server
# With custom configuration and toolkit
xagent-server --config agent_config.yaml --toolkit_path my_toolkit
# Server will be available at http://localhost:8010
4. Use the API
# Simple chat request
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"session_id": "session456",
"user_message": "Calculate the square of 15 and greet me as Alice"
}'
# Streaming response
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"session_id": "session456",
"user_message": "Hello, how are you?",
"stream": true
}'
# Advanced parameters for conversation control
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"session_id": "session456",
"user_message": "Based on our previous conversation, summarize what you know about me",
"history_count": 25,
"max_iter": 15,
"stream": false
}'
API Parameters Reference
| Parameter | Type | Default | Description |
|---|---|---|---|
user_id |
string | required | Unique identifier for the user |
session_id |
string | required | Unique identifier for the conversation session |
user_message |
string | required | The user's message content |
image_source |
string | optional | Image URL, file path, or base64 string for analysis |
stream |
boolean | false |
Enable streaming response via Server-Sent Events |
history_count |
integer | 16 |
Number of previous messages to include in context |
max_iter |
integer | 10 |
Maximum model call attempts for complex reasoning |
Parameter Usage Guidelines
history_count - Controls conversation context:
- 1-5: Independent questions without context
- 10-20: Standard multi-turn conversations
- 25+: Complex conversations requiring extensive history
max_iter - Controls reasoning depth:
- 5-8: Simple Q&A without tool usage
- 10-12: Standard tasks with light tool usage
- 15+: Complex multi-step reasoning and tool chains
5. Advanced Configuration (Hierarchical Multi-Agent System)
xAgent supports sophisticated multi-agent architectures and advanced configuration options for complex use cases. (agent as tool pattern)
Multi-Agent System with Sub-Agents
Create a hierarchical agent system where a coordinator agent delegates tasks to specialized sub-agents:
Main Agent Configuration (coordinator_agent.yaml):
agent:
name: "Agent"
system_prompt: |
You are Orion, a helpful, concise, and accurate assistant who coordinates specialized agents.
- Always answer clearly and directly.
- When the task requires research, delegate it to the `research_agent`.
- When the task requires writing, editing, or creative content generation, delegate it to the `write_agent`.
- Keep responses focused, relevant, and free of unnecessary filler.
- If more details or clarifications are needed, ask before proceeding.
- Maintain a friendly and professional tone while ensuring efficiency in task delegation.
- Your goal is to act as the central hub, ensuring each request is handled by the most capable resource.
model: "gpt-4.1"
capabilities:
tools:
- "char_count" # custom tool for character counting
mcp_servers:
- "http://localhost:8001/mcp/"
sub_agents:
- name: "research_agent"
description: "Research-focused agent for information gathering and analysis"
server_url: "http://localhost:8011"
- name: "write_agent"
description: "Expert agent for writing tasks, including content creation and editing"
server_url: "http://localhost:8012"
message_storage: "local"
server:
host: "0.0.0.0"
port: 8010
Research Specialist (research_agent.yaml):
agent:
name: "Research Agent"
system_prompt: |
You are Tom, a research specialist.
Your role is to gather accurate and up-to-date information using web search, evaluate sources critically, and deliver well-organized, insightful findings.
- Always verify the credibility of your sources.
- Present information in a clear, concise, and structured format.
- Highlight key facts, trends, and supporting evidence.
- When applicable, compare multiple sources to ensure accuracy.
- If information is uncertain or unavailable, state this transparently.
model: "gpt-4.1-mini"
capabilities:
tools:
- "web_search" # built-in web search tool
mcp_servers:
- "http://localhost:8002/mcp/"
message_storage: "local"
server:
host: "0.0.0.0"
port: 8011
Writing Specialist (writing_agent.yaml):
agent:
name: "Writing Agent"
system_prompt: |
You are Alice, a professional writer.
Your role is to craft clear, engaging, and well-structured content tailored to the intended audience and purpose.
- Adapt tone, style, and format to match the context.
- Use vivid language and strong storytelling techniques when appropriate.
- Ensure clarity, coherence, and grammatical accuracy.
- Organize ideas logically and maintain a smooth flow.
- Revise and refine content for maximum impact and readability.
model: "gpt-4.1-mini"
capabilities:
tools: []
mcp_servers:
- "http://localhost:8003/mcp/"
message_storage: "local"
server:
host: "0.0.0.0"
port: 8012
Starting Multi-Agent System
# Start sub-agents first
xagent-server --config research_agent.yaml > logs/research.log 2>&1 &
xagent-server --config writing_agent.yaml > logs/writing.log 2>&1 &
# Start coordinator agent
xagent-server --config coordinator_agent.yaml --toolkit_path my_toolkit > logs/coordinator.log 2>&1 &
# Verify all agents are running
curl http://localhost:8010/health
curl http://localhost:8011/health
curl http://localhost:8012/health
# Now you can chat with the coordinator agent through its API
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"session_id": "session456",
"user_message": "Research the latest advancements in AI and write a summary."
}'
You can create sub-agents with any depth you want, forming a hierarchical tree structure of agents. Just make sure there are no circular references, and start the agents in a bottom-up order.
6. Advanced Configuration (Structured Output with Pydantic Models)
xagent now supports defining structured output schemas directly in the YAML configuration file. This feature allows you to specify the expected output format using Pydantic models, ensuring type safety and easy parsing of the agent's responses.
Structured Output Configuration
In your YAML configuration file, you can define output_schema like this:
agent:
name: "YourAgent"
system_prompt: "Your system prompt here"
model: "gpt-4o-mini"
output_schema:
class_name: "YourModelName" # Pydantic model class name
fields:
field_name:
type: "field_type" # Field type (str, int, float, bool, list)
description: "description" # Field description
list_field:
type: "list"
items: "str" # List item type (required for list fields)
description: "A list of strings"
Supported Field Types
str- string typeint- integer typefloat- floating-point typebool- boolean typelist- list type
Important Notes:
- When using the
listtype, you must specify the element type through the items field. - This is to comply with OpenAI JSON Schema validation requirements.
- items supports any basic type:
str,int,float,bool, etc.
Example of a content generation model (with a list field):
agent:
name: "ContentAgent"
system_prompt: |
You are a content generation assistant.
Generate structured content with images.
model: "gpt-4o-mini"
capabilities:
tools:
- "web_search"
- "draw_image"
output_schema:
class_name: "ContentReport"
fields:
title:
type: "str"
description: "The title of the content report"
content:
type: "str"
description: "The main content of the report"
images:
type: "list"
items: "str" # List of image URLs with string type
description: "List of image URLs related to the content"
tags:
type: "list"
items: "str"
description: "List of relevant tags"
The above configuration will automatically generate the following Pydantic model:
from typing import List
from pydantic import BaseModel, Field
class ContentReport(BaseModel):
title: str = Field(description="The title of the content report")
content: str = Field(description="The main content of the report")
images: List[str] = Field(description="List of image URLs related to the content")
tags: List[str] = Field(description="List of relevant tags")
An agent started this way will automatically create a Pydantic model based on the specified output_schema and return structured output during conversations.
🌐 Web Interface
User-friendly Streamlit chat interface for interactive conversations with your AI agent.
# Start the chat interface with default settings
xagent-web
# With custom agent server URL
xagent-web --agent-server http://localhost:8010
# With custom host and port
xagent-web --host 0.0.0.0 --port 8501 --agent-server http://localhost:8010
💻 Command Line Interface (CLI)
xAgent provides a powerful command-line interface for quick interactions and testing. The CLI supports both single-question mode and interactive chat sessions, with real-time streaming responses for a smooth conversational experience.
Note: do not support sub-agents in CLI mode currently.
Quick Start
# Interactive chat mode with streaming (default)
xagent-cli
# Use custom configuration
xagent-cli --config my_config.yaml --toolkit_path my_toolkit --user_id developer --session_id session123 --verbose
# Ask a single question (non-streaming)
xagent-cli --ask "What is the capital of France?"
Interactive Chat Mode
Start a continuous conversation with the agent with streaming enabled by default:
$ xagent-cli
🤖 Welcome to xAgent CLI!
Agent: Agent
Model: gpt-4.1-mini
Tools: 3 loaded
Session: cli_session_abc123
Verbose mode: Disabled
Streaming: Enabled
Type 'exit', 'quit', or 'bye' to end the session.
Type 'clear' to clear the session history.
Type 'stream on/off' to toggle streaming mode.
Type 'help' for available commands.
--------------------------------------------------
👤 You: Hello, how are you?
🤖 Agent: Hello! I'm doing well, thank you for asking...
[Response streams in real-time]
👤 You: help
📋 Available commands:
exit, quit, bye - Exit the chat session
clear - Clear session history
stream on/off - Toggle streaming mode
help - Show this help message
👤 You: exit
👋 Goodbye!
CLI Commands Reference
| Command | Description | Example |
|---|---|---|
xagent-cli |
Start interactive chat with streaming (default) | xagent-cli |
xagent-cli --ask <message> |
Ask single question (non-streaming) | xagent-cli --ask "Hello world" |
xagent-cli --init |
Create default configuration file | xagent-cli --init |
CLI Options
| Option | Description | Default |
|---|---|---|
--config |
Configuration file path | Uses default configuration |
--toolkit_path |
Custom toolkit directory | No additional tools |
--user_id |
User identifier | Auto-generated |
--session_id |
Session identifier | Auto-generated |
--verbose, -v |
Enable verbose logging | False |
--no-stream |
Disable streaming response | False (streaming enabled) |
--ask |
Ask single question and exit | Interactive mode |
--init |
Create default configuration file | - |
--init-config |
Config file path for --init | config/agent.yaml |
🤖 Advanced Usage: Agent Class
For more control and customization, use the Agent class directly in your Python code.
Basic Agent Usage
import asyncio
from xagent.core import Agent, Session
async def main():
# Create agent
agent = Agent(
name="my_assistant",
system_prompt="You are a helpful AI assistant.",
model="gpt-4.1-mini"
)
# Create session for conversation management
session = Session(session_id="session456")
# Chat interaction
response = await agent.chat("Hello, how are you?", session)
print(response)
# Streaming response example
response = await agent.chat("Tell me a story", session, stream=True)
async for event in response:
print(event, end="")
asyncio.run(main())
Adding Custom Tools
import asyncio
import time
import httpx
from xagent.utils.tool_decorator import function_tool
from xagent.core import Agent, Session
# Sync tools - automatically converted to async
@function_tool()
def calculate_square(n: int) -> int:
"""Calculate square of a number."""
time.sleep(0.1) # Simulate CPU work
return n * n
# Async tools - used directly for I/O operations
@function_tool()
async def fetch_weather(city: str) -> str:
"""Fetch weather data from API."""
async with httpx.AsyncClient() as client:
await asyncio.sleep(0.5) # Simulate API call
return f"Weather in {city}: 22°C, Sunny"
async def main():
# Create agent with custom tools
agent = Agent(
tools=[calculate_square, fetch_weather],
model="gpt-4.1-mini"
)
session = Session(user_id="user123")
# Agent handles all tools automatically
response = await agent.chat(
"Calculate the square of 15 and get weather for Tokyo",
session
)
print(response)
asyncio.run(main())
Structured Outputs with Pydantic
With Pydantic structured outputs, you can:
- Parse and validate an agent’s response into typed data
- Easily extract specific fields
- Ensure the response matches the expected format
- Guarantee type safety in your application
- Reliably chain multi-step tasks using structured data
import asyncio
from pydantic import BaseModel
from xagent.core import Agent, Session
from xagent.tools import web_search
class WeatherReport(BaseModel):
location: str
temperature: int
condition: str
humidity: int
class Step(BaseModel):
explanation: str
output: str
class MathReasoning(BaseModel):
steps: list[Step]
final_answer: str
async def get_structured_response():
agent = Agent(model="gpt-4.1-mini",
tools=[web_search],
output_type=WeatherReport) # You can set a default output type here or leave it None
session = Session(user_id="user123")
# Request structured output for weather
weather_data = await agent.chat(
"what's the weather like in Hangzhou?",
session
)
print(f"Location: {weather_data.location}")
print(f"Temperature: {weather_data.temperature}°F")
print(f"Condition: {weather_data.condition}")
print(f"Humidity: {weather_data.humidity}%")
# Request structured output for mathematical reasoning (overrides output_type)
reply = await agent.chat("how can I solve 8x + 7 = -23", session, output_type=MathReasoning) # Override output_type for this call
for index, step in enumerate(reply.steps):
print(f"Step {index + 1}: {step.explanation} => Output: {step.output}")
print("Final Answer:", reply.final_answer)
if __name__ == "__main__":
asyncio.run(get_structured_response())
Agent as Tool Pattern
import asyncio
from xagent.core import Agent, Session
from xagent.db import MessageStorageLocal
from xagent.tools import web_search
async def agent_as_tool_example():
# Create specialized agents
researcher_agent = Agent(
name="research_specialist",
system_prompt="Research expert. Gather information and provide insights.",
model="gpt-4.1-mini",
tools=[web_search]
)
# Convert agent to tool
message_storage = MessageStorageLocal()
research_tool = researcher_agent.as_tool(
name="researcher",
description="Research topics and provide detailed analysis",
message_storage=message_storage
)
# Main coordinator agent with specialist tools
coordinator = Agent(
name="coordinator",
tools=[research_tool],
system_prompt="Coordination agent that delegates to specialists.",
model="gpt-4.1"
)
session = Session(user_id="user123")
# Complex multi-step task
response = await coordinator.chat(
"Research renewable energy benefits and write a brief summary",
session
)
print(response)
asyncio.run(agent_as_tool_example())
Persistent Sessions with Redis
import asyncio
from xagent.core import Agent, Session
from xagent.db import MessageStorageRedis
async def chat_with_persistence():
# Initialize Redis-backed message storage
message_storage = MessageStorageRedis()
# Create agent
agent = Agent(
name="persistent_agent",
model="gpt-4.1-mini"
)
# Create session with Redis persistence
session = Session(
user_id="user123",
session_id="persistent_session",
message_storage=message_storage
)
# Chat with automatic message persistence
response = await agent.chat("Remember this: my favorite color is blue", session)
print(response)
# Later conversation - context is preserved in Redis
response = await agent.chat("What's my favorite color?", session)
print(response)
asyncio.run(chat_with_persistence())
you can implement your own message storage by inheriting from MessageStorageBase and implementing the required methods like add_messages, get_messages, etc.
🏗️ Architecture
Modern Design for High Performance
xAgent/
├── 🤖 xagent/ # Core async agent framework
│ ├── __init__.py # Package initialization and exports
│ ├── __version__.py # Version information
│ ├── core/ # Core agent and session management
│ │ ├── __init__.py # Core exports (Agent, Session)
│ │ ├── agent.py # Main Agent class with chat functionality
│ │ └── session.py # Session management with operations
│ ├── interfaces/ # User interfaces and servers
│ │ ├── __init__.py # Interface exports
│ │ ├── base.py # Base interface classes
│ │ ├── cli.py # Command line interface
│ │ └── server.py # HTTP Agent Server (FastAPI)
│ ├── db/ # Message storage layer
│ │ ├── __init__.py # Database exports
│ │ ├── base_messages.py # Abstract message storage interface
│ │ ├── local_messages.py # In-memory message storage
│ │ └── redis_messages.py # Redis-based message persistence
│ ├── schemas/ # Data models and types (Pydantic)
│ │ ├── __init__.py # Schema exports
│ │ └── message.py # Message and ToolCall models
│ ├── tools/ # Tool ecosystem
│ │ ├── __init__.py # Tool registry (web_search, draw_image)
│ │ ├── openai_tool.py # OpenAI tool integrations
│ │ └── mcp_demo/ # MCP demo server and client
│ ├── utils/ # Utility functions and helpers
│ │ ├── __init__.py # Utility exports
│ │ ├── tool_decorator.py # Function tool decorator
│ │ ├── mcp_convertor.py # MCP protocol conversion
│ │ └── image_upload.py # Image processing utilities
│ ├── multi/ # Multi-agent support
│ │ ├── __init__.py # Multi-agent exports
│ │ ├── swarm.py # Agent swarm coordination
│ │ └── workflow.py # Workflow management
│ └── frontend/ # Web interface components
│ ├── __init__.py # Frontend exports
│ ├── app.py # Streamlit chat application
│ └── launcher.py # Web interface launcher
├── 🛠️ toolkit/ # Custom tool ecosystem
│ ├── __init__.py # Toolkit registry
│ ├── tools.py # Custom tools (char_count, etc.)
│ └── mcp_server.py # Main MCP server implementation
├── ⚙️ config/ # Configuration files
│ ├── agent.yaml # Default agent configuration
│ ├── structure_examples/ # Structured output examples
│ └── sub_agents_example/ # Multi-agent system examples
├── 📝 examples/ # Usage examples and demos
├── 🧪 tests/ # Comprehensive test suite
├── 📁 logs/ # Application log files
├── 📦 dist/ # Distribution packages
└── 📄 pyproject.toml # Project configuration
🤖 API Reference
Core Classes
🤖 Agent
Main AI agent class for handling conversations and tool execution.
Agent(
name: Optional[str] = None,
system_prompt: Optional[str] = None,
model: Optional[str] = None,
client: Optional[AsyncOpenAI] = None,
tools: Optional[list] = None,
mcp_servers: Optional[str | list] = None,
sub_agents: Optional[List[Union[tuple[str, str, str], 'Agent']]] = None
)
Key Methods:
async chat(user_message, session, **kwargs) -> str | BaseModel: Main chat interfaceasync __call__(user_message, session, **kwargs) -> str | BaseModel: Shorthand for chatas_tool(name, description, message_storage) -> Callable: Convert agent to tool
Chat Method Parameters:
user_message: The user's message (string or Message object)session: Session object for conversation managementhistory_count: Number of previous messages to include (default: 16)max_iter: Maximum model call attempts (default: 10)image_source: Optional image for analysis (URL, path, or base64)output_type: Pydantic model for structured outputstream: Enable streaming response (default: False)
Agent Parameters:
name: Agent identifier (default: "default_agent")system_prompt: Instructions for the agent behaviormodel: OpenAI model to use (default: "gpt-4.1-mini")client: Custom AsyncOpenAI client instancetools: List of function toolsmcp_servers: MCP server URLs for dynamic tool loadingsub_agents: List of sub-agent configurations (name, description, server URL)
🌐 HTTPAgentServer
HTTP server for agent interactions with REST API endpoints.
HTTPAgentServer(
config_path: Optional[str] = None,
toolkit_path: Optional[str] = None
)
API Endpoints:
GET /health: Health check endpointPOST /chat: Main chat interaction endpointPOST /clear_session: Clear conversation session
Chat Endpoint (POST /chat) Parameters:
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
user_id |
string | ✅ | - | Unique user identifier |
session_id |
string | ✅ | - | Conversation session identifier |
user_message |
string | ✅ | - | User's message content |
image_source |
string | ❌ | null |
Image URL, file path, or base64 string |
stream |
boolean | ❌ | false |
Enable Server-Sent Events streaming |
history_count |
integer | ❌ | 16 |
Number of previous messages to include |
max_iter |
integer | ❌ | 10 |
Maximum model call attempts |
Example Usage:
# Start server
xagent-server --config config.yaml --toolkit_path ./tools
# Basic chat
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{"user_id": "user123", "session_id": "session456", "user_message": "Hello!"}'
# Advanced chat with custom parameters
curl -X POST "http://localhost:8010/chat" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user123",
"session_id": "session456",
"user_message": "Analyze the conversation context",
"history_count": 25,
"max_iter": 15
}'
💬 Session
Manages conversation history and persistence with operations.
Session(
user_id: str,
session_id: Optional[str] = None,
message_storage: Optional[MessageStorageBase] = None
)
Key Methods:
async add_messages(messages: Message | List[Message]) -> None: Store messagesasync get_messages(count: int = 20) -> List[Message]: Retrieve message historyasync clear_session() -> None: Clear conversation historyasync pop_message() -> Optional[Message]: Remove last non-tool message
Important Considerations
| Aspect | Details |
|---|---|
| Tool functions | Can be sync or async (automatic conversion) |
| Agent interactions | Always use await |
| Context | Run in context with asyncio.run() |
| Concurrency | All tools execute in parallel automatically |
📊 Monitoring & Observability
xAgent includes comprehensive observability features:
- 🔍 Langfuse Integration - Track AI interactions and performance
- 📝 Structured Logging - Throughout the entire system
- ❤️ Health Checks - API monitoring endpoints
- ⚡ Performance Metrics - Tool execution time and success rates
🤝 Contributing
We welcome contributions! Here's how to get started:
Development Workflow
- Fork the repository
- Create a feature branch:
git checkout -b feature/amazing-feature - Commit your changes:
git commit -m 'Add amazing feature' - Push to the branch:
git push origin feature/amazing-feature - Open a Pull Request
Development Guidelines
| Area | Requirements |
|---|---|
| Code Style | Follow PEP 8 standards |
| Testing | Add tests for new features |
| Documentation | Update docs as needed |
| Type Safety | Use type hints throughout |
| Commits | Follow conventional commit messages |
Package Upload
First time upload
pip install build twine
python -m build
twine upload dist/*
Subsequent uploads
rm -rf dist/ build/ *.egg-info/
python -m build
twine upload dist/*
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
Special thanks to the amazing open source projects that make xAgent possible:
- OpenAI - GPT models powering our AI
- FastAPI - Robust async API framework
- Streamlit - Intuitive web interface
- Redis - High-performance data storage
- Langfuse - Observability and monitoring
📞 Support & Community
| Resource | Link | Purpose |
|---|---|---|
| 🐛 Issues | GitHub Issues | Bug reports & feature requests |
| 💬 Discussions | GitHub Discussions | Community chat & Q&A |
| zhangjun310@live.com | Direct support |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
File details
Details for the file myxagent-0.1.26.tar.gz.
File metadata
- Download URL: myxagent-0.1.26.tar.gz
- Upload date:
- Size: 84.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
475a5fb3f2b0b96b44d5ceedbac7aaa4aee6c74c4588e7a9096f15d789b370d7
|
|
| MD5 |
3d8ade82493e9496b067a9402912390f
|
|
| BLAKE2b-256 |
c14eedc20752119fbc36bb7d26c91eb7617bf6ed2efc1153786d6eb52f6ea50d
|
File details
Details for the file myxagent-0.1.26-py3-none-any.whl.
File metadata
- Download URL: myxagent-0.1.26-py3-none-any.whl
- Upload date:
- Size: 71.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b87e2f0729c39298bc26c4f35e51e5d989f03206ec9679af10994c77de94e469
|
|
| MD5 |
b9c16a6acab8b5bc4f18580bd660658e
|
|
| BLAKE2b-256 |
300e2bd6af8a98bdefcf50a7b85fb3a94a3d3591d342c1fb605630f3325cfb86
|