Skip to main content

A library for creating agents

Project description

artificer-agents

A lightweight Python library for running deterministic agent loops with MCP tools.

Installation

pip install artificer-agents

# With OpenAI support
pip install artificer-agents[openai]

Requires Python 3.13+.

Usage

Define agents as classes:

import asyncio
from pydantic import BaseModel
from artificer.agents import Agent
from artificer.agents.mcp import MCPClient
from artificer.agents.models import OpenAIModel


class Input(BaseModel):
    query: str


class Output(BaseModel):
    result: str


class MyAgent(Agent):
    system_prompt = "You are a helpful assistant."
    model = OpenAIModel(model="gpt-4o-mini")
    mcp_client = MCPClient(["path/to/mcp-server.py"])  # optional
    _input_schema = Input
    _output_schema = Output


async def main():
    agent = MyAgent()

    async with agent.mcp_client:
        result = await agent.run(Input(query="Hello"), verbose=True)
        print(result.result)

asyncio.run(main())

Simple String Agents

For simple str -> str agents, no schemas needed:

class SimpleAgent(Agent):
    system_prompt = "Answer questions concisely."
    model = OpenAIModel(model="gpt-4o-mini")

result = await SimpleAgent().run("What is Python?")
print(result.output)  # StringOutput with .output field

Subagents

Agents can spawn other agents:

class ResearcherAgent(Agent):
    system_prompt = "Research the topic and return findings."
    model = model
    mcp_client = mcp_client
    _input_schema = ResearchInput
    _output_schema = ResearchOutput


class OrchestratorAgent(Agent):
    system_prompt = "Use the researcher subagent to gather info."
    model = model
    subagents = [ResearcherAgent()]
    _input_schema = Input
    _output_schema = Output

Development

uv sync                    # Install dependencies
./scripts/check.sh         # Run all checks (lint, format, typecheck, tests)
./scripts/test.sh          # Run tests only
./scripts/format.sh        # Format code

License

MIT

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

artificer_agents-0.1.0a22.tar.gz (150.4 kB view details)

Uploaded Source

Built Distribution

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

artificer_agents-0.1.0a22-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file artificer_agents-0.1.0a22.tar.gz.

File metadata

  • Download URL: artificer_agents-0.1.0a22.tar.gz
  • Upload date:
  • Size: 150.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for artificer_agents-0.1.0a22.tar.gz
Algorithm Hash digest
SHA256 7c78c4c8a31eeaf94ed57954206e4d5cc6265e77f69cb27ba27acb3d1ae7d9df
MD5 148c07c49a34ff2999ec46df08c6336d
BLAKE2b-256 435da63b826debd25794a9dae7b2da883d0c084e0bc1d7f31d350f82f1c53400

See more details on using hashes here.

File details

Details for the file artificer_agents-0.1.0a22-py3-none-any.whl.

File metadata

File hashes

Hashes for artificer_agents-0.1.0a22-py3-none-any.whl
Algorithm Hash digest
SHA256 6c7676b38fcbc458abe7dfa68d052e2cd58b320412a39938194d7fe6b823c0ef
MD5 daf4a84f31a6d4b8042f390acfe34005
BLAKE2b-256 cf929849863a5e19a99655c86949fb0faeb906fb4219760b0bcd3d4d4ddc575b

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