Skip to main content

Ergonomic LLM Agents

Project description

Agentia: Ergonomic LLM Agents

Ergonomic LLM Agents with MCP and Skills support.

Getting Started

Run agents with tools, MCP, and Skills

from agentia import Agent, MCP
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 = MCP(name="calculator", command="uvx", args=["mcp-server-calculator"])

# Create an agent
# This will load the function tool, the calculator MCP, and all skills under $CWD/.skills
agent = Agent(model="openai/gpt-5-nano", tools=[get_weather, calc], skills=True)

# Run the agent with the mcp
response = await agent.run("Calculate 234 ** 3")

print(response.text)

# Output: The result of 234 raised to the power of 3 is 12,812,904.

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, and Enum
    • dataclasses
  • pydantic.BaseModel subclasses

Project details


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.24.tar.gz (35.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentia-0.1.24-py3-none-any.whl (48.7 kB view details)

Uploaded Python 3

File details

Details for the file agentia-0.1.24.tar.gz.

File metadata

  • Download URL: agentia-0.1.24.tar.gz
  • Upload date:
  • Size: 35.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for agentia-0.1.24.tar.gz
Algorithm Hash digest
SHA256 ac0908c86d0d38aff2c72c050adad0d98e3a8506dde3465a49a5527f1da71b40
MD5 2ca31c5c1023cfaa001d77eef1ec8126
BLAKE2b-256 7678565254cd004156753d8dab409a52bb6383c3b50b4ca37007f3443b52952f

See more details on using hashes here.

File details

Details for the file agentia-0.1.24-py3-none-any.whl.

File metadata

  • Download URL: agentia-0.1.24-py3-none-any.whl
  • Upload date:
  • Size: 48.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for agentia-0.1.24-py3-none-any.whl
Algorithm Hash digest
SHA256 b15c733b69b8110b45ce283b39cb5849db094190730f4706b07dd8e49365da86
MD5 1a5c4460ddfcb981d31c8fc358436e9b
BLAKE2b-256 8903e8fbad263a999eae4d341b787cd796b64275f1710f9178a26c65e3940d32

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page