Ergonomic LLM Agents
Project description
Agentia: Ergonomic LLM Agents
Getting Started
Run agents with tools and MCP.
from agentia import Agent, MCPServer, MCPContext
from typing import Annotated
# Define a tool as a python function
def get_weather(location: Annotated[str, "The city name"]):
"""Get the current weather in a given location"""
return { "temperature": 72 }
# Declare a MCP server:
calc = MCPServer(name="calculator", command="uvx", args=["mcp-server-calculator"])
# Create an agent
agent = Agent(model="openai/gpt-5-mini", tools=[get_weather, calc])
# Run the agent with the tool
async with MCPContext(): # This line can be omitted if not using MCP
response = await agent.run("What is the weather like in boston?")
print(response.text)
# Output: The current temperature in Boston is 72°F.
The Magic Decorator
Create agent-powered magic functions.
Support both plain types and pydantic models as input and output.
from agentia import magic
from pydantic import BaseModel
class Forcast(BaseModel):
location: str
temperature_celsius: int
@magic
async def get_weather(weather_forcast: str) -> Forcast:
"""Create weather forcase object based on the input string"""
...
forcast = await get_weather("The current temperature in Boston is 72°F")
print(forcast.location) # Output: Boston
print(forcast.temperature_celsius) # Output: 22
Supported Parameter and Result Types
- Any types that can be passed to
pydantic.TypeAdaptor:- Builtin types:
int,float,str,bool,tuple[_],list[_],dict[_, _] - Enums:
Literal['A', 'B', ...],StrEnum,IntEnum, andEnum - dataclasses
- Builtin types:
pydantic.BaseModelsubclasses
Run agent as a REPL app
- Create a config file at
./robo.toml
[agent]
name = "Robo" # This is the only required field
icon = "🤖"
instructions = "You are a helpful assistant"
model = "openai/o3-mini"
plugins = ["clock"]
[mcp]
calc={ command = "uvx", args = ["mcp-server-calculator"] }
- Load the agent
agent = Agent.from_config("./robo.toml")
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
agentia-0.1.0.tar.gz
(30.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
agentia-0.1.0-py3-none-any.whl
(40.0 kB
view details)
File details
Details for the file agentia-0.1.0.tar.gz.
File metadata
- Download URL: agentia-0.1.0.tar.gz
- Upload date:
- Size: 30.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49a5fa432e08cfa63acc818dafb25bd5034692f8da7e5f62a2b3b51433bbe830
|
|
| MD5 |
51baa377e497df42fcf3bda5cb65ff65
|
|
| BLAKE2b-256 |
aedadd168a15b31161292ac94a6885c0bf2d8b986b98a6644430bca9234db19e
|
File details
Details for the file agentia-0.1.0-py3-none-any.whl.
File metadata
- Download URL: agentia-0.1.0-py3-none-any.whl
- Upload date:
- Size: 40.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d1ee56f4d45333a418c994a27989b1f38977d9f9f3391dfc8663ebc1ee4d8a8
|
|
| MD5 |
0d295c61479785e5c5a9f9a35d43e65d
|
|
| BLAKE2b-256 |
f13d19e9ebf903bec93a7f7c432edc404a57e4410c2152d1547a0d078ef9ecd5
|