Skip to main content

A modular, extensible AI agent system

Project description

Agenai

PyPI version Python 3.10+

A modular, extensible AI agent system built around a core loop of perceive -> reason -> act.

Features

  • Modular Architecture: Build specialized agents with custom tools
  • Multiple LLM Providers: Anthropic Claude, Ollama (local, free)
  • Web Interface: FastAPI backend with WebSocket chat
  • Built-in Agents: Teaching Assistant for teaching Python programming
  • Hooks System: Full observability into agent behavior

Installation

# From PyPI
pip install agenai

# With web server support (for chat UI)
pip install agenai[server]

# For development (editable install)
pip install -e ".[dev]"

Quick Start

Option 1: Using Ollama (Free, Local)

No API key required! Uses local LLMs.

# 1. Install Ollama from https://ollama.ai

# 2. Pull a model
ollama pull llama3.1

# 3. Start the web server
agenai-server

# 4. Open http://localhost:8000 in your browser

Option 2: Using Claude API

# Set your API key
export ANTHROPIC_API_KEY="your-key"

# Run CLI
agenai run "Explain Python for loops" -v

# Or interactive chat
agenai chat

Web Chat Interface

Start the server with WebSocket support:

# Install server dependencies
pip install -e ".[server]"

# Start server
agenai-server --port 8000

# Or with auto-reload for development
agenai-server --reload

Open http://localhost:8000 for the chat UI.

API Endpoints

Endpoint Method Description
/ GET Web chat interface
/health GET Health check + Ollama status
/chat POST REST chat endpoint
/ws/{client_id} WebSocket Real-time chat

Creating Custom Agents

from agenai.agent import SpecializedAgent, OllamaProvider
from agenai.agent.tools import Tool, ToolResult

class MyTool(Tool):
    @property
    def name(self) -> str:
        return "my_tool"

    @property
    def description(self) -> str:
        return "Does something useful"

    @property
    def parameters(self) -> dict:
        return {"type": "object", "properties": {}}

    def execute(self) -> ToolResult:
        return ToolResult.ok("Done!")

class MyAgent(SpecializedAgent):
    name = "my_agent"
    description = "My custom agent"

    def get_system_prompt(self) -> str:
        return "You are a helpful assistant..."

    def get_tools(self) -> list:
        return [MyTool()]

# Use with Ollama (free, local)
agent = MyAgent(llm=OllamaProvider(model="llama3.1"))
result = agent.run("Hello!")

Built-in Agents

Teaching Assistant

Teaching assistant for Python programming:

from agenai.agents.teaching_assistant import TeachingAssistantAgent

agent = TeachingAssistantAgent(difficulty_level="beginner")
result = agent.run("Explain what a for loop is")

Tools: run_code, review_code, create_exercise, create_quiz

Architecture

┌─────────────┐     WebSocket      ┌─────────────┐              ┌─────────────┐
│   Frontend  │ <================> │   Backend   │ <==========> │   Ollama    │
│  (Web Chat) │                    │  (FastAPI)  │              │ (Local LLM) │
└─────────────┘                    └──────┬──────┘              └─────────────┘
                                          │
                                          ▼
                                   ┌─────────────┐
                                   │   Agenai    │
                                   │   Agents    │
                                   └─────────────┘

See AI-AGENT-ARCHITECTURE.md for full details.

Development

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest tests/ -v

# Format code
ruff check --fix .

Publishing to PyPI

Local Publishing

# Build only
./scripts/publish.sh --build-only

# Publish to TestPyPI
TEST_PYPI_TOKEN=xxx ./scripts/publish.sh --test

# Publish to PyPI
PYPI_TOKEN=xxx ./scripts/publish.sh

Automated Publishing (GitHub Actions)

The repo includes a GitHub Actions workflow that auto-publishes using Trusted Publisher (OIDC - no API tokens needed).

How it works:

  • Create a GitHub Release → auto-publishes to PyPI
  • Manual dispatch → choose testpypi or pypi target

Step 1: Setup Trusted Publisher on PyPI

  1. Go to https://pypi.org/manage/project/agenai/settings/publishing/

  2. Click "Add a new publisher"

  3. Fill in:

    Field Value
    Owner tautobot
    Repository agenai
    Workflow name publish.yml
    Environment name pypi

Step 2: Setup Trusted Publisher on TestPyPI

  1. Go to https://test.pypi.org/manage/project/agenai/settings/publishing/
  2. Same fields as above, but Environment name: testpypi

Step 3: Setup GitHub Environments

  1. Go to https://github.com/tautobot/agenai/settings/environments
  2. Create environment pypi
  3. Create environment testpypi
  4. (Optional) Add protection rules like required reviewers

Releasing a New Version

  1. Update version in pyproject.toml
  2. Commit and push
  3. Create a GitHub Release with tag v0.x.x
  4. GitHub Actions auto-publishes to PyPI

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

agenai-0.1.3.tar.gz (60.7 kB view details)

Uploaded Source

Built Distribution

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

agenai-0.1.3-py3-none-any.whl (57.0 kB view details)

Uploaded Python 3

File details

Details for the file agenai-0.1.3.tar.gz.

File metadata

  • Download URL: agenai-0.1.3.tar.gz
  • Upload date:
  • Size: 60.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for agenai-0.1.3.tar.gz
Algorithm Hash digest
SHA256 21ff6a87e1dfba72565fd37c4fc9f114a4b5c78b966f9386bcddd24b94411c74
MD5 18cb02b8e9810ca6ebe48cc522e3e242
BLAKE2b-256 c04f95cc2ef24886d23a10dcc46f156c5e1796f17b833f25788695f5d148cfbd

See more details on using hashes here.

File details

Details for the file agenai-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: agenai-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 57.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for agenai-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 1e71f11f40f0e5d4d4a749cc923b6fe2275f2a569b6d5e92d6b7fa69dada96d1
MD5 17e652f4e4e819710d51d17553165ce9
BLAKE2b-256 72f7a8a44a736253acbb71556b55ad273b74e9b5bd366481cffdd3444a96c3fa

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