MBX AI SDK
Project description
MBX AI
A Python library for building AI applications with LLMs.
Features
- OpenRouter Integration: Connect to various LLM providers through OpenRouter
- Tool Integration: Easily integrate tools with LLMs using the Model Context Protocol (MCP)
- Structured Output: Get structured, typed responses from LLMs
- Chat Interface: Simple chat interface for interacting with LLMs
- FastAPI Server: Built-in FastAPI server for tool integration
Installation
pip install mbxai
Quick Start
Basic Usage
from mbxai import OpenRouterClient
# Initialize the client
client = OpenRouterClient(api_key="your-api-key")
# Chat with an LLM
response = await client.chat([
{"role": "user", "content": "Hello, how are you?"}
])
print(response.choices[0].message.content)
Using Tools
from mbxai import OpenRouterClient, ToolClient
from pydantic import BaseModel
# Define your tool's input and output models
class CalculatorInput(BaseModel):
a: float
b: float
class CalculatorOutput(BaseModel):
result: float
# Create a calculator tool
async def calculator(input: CalculatorInput) -> CalculatorOutput:
return CalculatorOutput(result=input.a + input.b)
# Initialize the client with tools
client = ToolClient(OpenRouterClient(api_key="your-api-key"))
client.add_tool(calculator)
# Use the tool in a chat
response = await client.chat([
{"role": "user", "content": "What is 2 + 3?"}
])
print(response.choices[0].message.content)
Using MCP (Model Context Protocol)
from mbxai import OpenRouterClient, MCPClient
from mbxai.mcp import MCPServer
from mcp.server.fastmcp import FastMCP
from pydantic import BaseModel
# Define your tool's input and output models
class CalculatorInput(BaseModel):
a: float
b: float
class CalculatorOutput(BaseModel):
result: float
# Create a FastMCP instance
mcp = FastMCP("calculator-service")
# Create a calculator tool
@mcp.tool()
async def calculator(argument: CalculatorInput) -> CalculatorOutput:
return CalculatorOutput(result=argument.a + argument.b)
# Start the MCP server
server = MCPServer("calculator-service")
await server.add_tool(calculator)
await server.start()
# Initialize the MCP client
client = MCPClient(OpenRouterClient(api_key="your-api-key"))
await client.register_mcp_server("calculator-service", "http://localhost:8000")
# Use the tool in a chat
response = await client.chat([
{"role": "user", "content": "What is 2 + 3?"}
])
print(response.choices[0].message.content)
Development
Setup
- Clone the repository:
git clone https://github.com/yourusername/mbxai.git
cd mbxai
- Create a virtual environment:
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
- Install dependencies:
pip install -e ".[dev]"
Running Tests
pytest tests/
License
MIT License
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
mbxai-0.6.7.tar.gz
(54.1 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
mbxai-0.6.7-py3-none-any.whl
(19.1 kB
view details)
File details
Details for the file mbxai-0.6.7.tar.gz.
File metadata
- Download URL: mbxai-0.6.7.tar.gz
- Upload date:
- Size: 54.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
932b266ea7d727a1247de67c68c6cde72b8d4c6e9af90f52aa6401546bb5b04b
|
|
| MD5 |
c4a0bc4370c7f9c054c57a258514c53d
|
|
| BLAKE2b-256 |
b4aa5f9d9572e4ed2dae7a7e40f78a5b328caf7e3a1aa85be2a8f967323f6e47
|
File details
Details for the file mbxai-0.6.7-py3-none-any.whl.
File metadata
- Download URL: mbxai-0.6.7-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
015e09c23ddb05e99175804c3818c2a7a538a926c320560c2252d446360ffc3e
|
|
| MD5 |
fd8c4a6542b44697032ca36d929c2c2b
|
|
| BLAKE2b-256 |
f74d60be78903e168504fd89222dd0ec5ec95c8705fdab1f2038c63b4de0026f
|