Skip to main content

Aegra core API - Self-hosted Agent Protocol server

Project description

aegra-api

Aegra API - Self-hosted Agent Protocol server.

Aegra is an open-source, self-hosted alternative to LangSmith Deployments. This package provides the core API server that implements the Agent Protocol, allowing you to run AI agents on your own infrastructure without vendor lock-in.

Features

  • Agent Protocol Compliant: Works with Agent Chat UI, LangGraph Studio, CopilotKit
  • Drop-in Replacement: Compatible with the LangGraph SDK
  • Self-Hosted: Run on your own PostgreSQL database
  • Streaming Support: Real-time streaming of agent responses
  • Human-in-the-Loop: Built-in support for human approval workflows
  • Scheduled Cron Jobs: Trigger runs on a schedule with timezone support and multi-instance safe claim
  • Vector Store: Semantic search capabilities with PostgreSQL

Installation

pip install aegra-api

Quick Start

The easiest way to get started is with the aegra-cli:

# Install the CLI
pip install aegra-cli

# Initialize a new project (interactive)
aegra init
cd <your-project>

# Configure environment
cp .env.example .env
# Add your OPENAI_API_KEY to .env

# Install dependencies and start developing
uv sync
uv run aegra dev

Manual Setup

If you prefer manual setup:

# Install dependencies
pip install aegra-api

# Set environment variables
export POSTGRES_USER=aegra
export POSTGRES_PASSWORD=aegra_secret
export POSTGRES_HOST=localhost
export POSTGRES_DB=aegra

# Run migrations
alembic upgrade head

# Start server
uvicorn aegra_api.main:app --port 2026 --reload

Configuration

aegra.json

Define your agent graphs in aegra.json:

{
  "graphs": {
    "agent": "./graphs/my_agent/graph.py:graph",
    "assistant": "./graphs/assistant/graph.py:graph"
  },
  "http": {
    "app": "./custom_routes.py:app"
  }
}

Environment Variables

# Database
POSTGRES_USER=aegra
POSTGRES_PASSWORD=aegra_secret
POSTGRES_HOST=localhost
POSTGRES_DB=aegra

# Authentication
AUTH_TYPE=noop  # Options: noop, custom

# Server
HOST=0.0.0.0
PORT=2026

# Configuration
AEGRA_CONFIG=aegra.json

# LLM (for example agents)
OPENAI_API_KEY=sk-...

# Observability (optional)
OTEL_TARGETS=LANGFUSE,PHOENIX

API Endpoints

Endpoint Method Description
/assistants POST Create assistant from graph_id
/assistants/search POST Search assistants
/assistants/{assistant_id} GET Get assistant details
/threads POST Create conversation thread
/threads/{thread_id}/state GET Get thread state
/threads/{thread_id}/runs POST Execute graph (background)
/threads/{thread_id}/runs/stream POST Execute graph (streaming)
/threads/{thread_id}/runs/{run_id}/cancel POST Cancel a run
/runs/crons POST Create a stateless cron job
/threads/{thread_id}/runs/crons POST Create a thread-bound cron job
/runs/crons/{cron_id} PATCH/DELETE Update or delete a cron job
/runs/crons/search POST Search cron jobs
/runs/crons/count POST Count cron jobs
/store/items PUT Save to vector store
/store/items/search POST Semantic search
/store/namespaces POST List store namespaces
/health GET Health check

Creating Graphs

Agents are Python modules exporting a compiled graph variable:

# graphs/my_agent/graph.py
from typing import TypedDict
from langgraph.graph import StateGraph, START, END

class State(TypedDict):
    messages: list[str]

def process_node(state: State) -> State:
    messages = state.get("messages", [])
    messages.append("Processed!")
    return {"messages": messages}

# Build the graph
builder = StateGraph(State)
builder.add_node("process", process_node)
builder.add_edge(START, "process")
builder.add_edge("process", END)

# Export as 'graph'
graph = builder.compile()

Architecture

+---------------------------------------------------------+
|  FastAPI HTTP Layer (Agent Protocol API)                |
|  - /assistants, /threads, /runs, /store endpoints       |
+---------------------------------------------------------+
|  Middleware Stack                                        |
|  - Auth, CORS, Structured Logging, Correlation ID       |
+---------------------------------------------------------+
|  Service Layer (Business Logic)                          |
|  - LangGraphService, AssistantService, StreamingService |
+---------------------------------------------------------+
|  LangGraph Runtime                                       |
|  - Graph execution, state management, tool execution    |
+---------------------------------------------------------+
|  Database Layer (PostgreSQL)                             |
|  - AsyncPostgresSaver (checkpoints), AsyncPostgresStore |
+---------------------------------------------------------+

Package Structure

libs/aegra-api/
├── src/aegra_api/
│   ├── api/              # Agent Protocol endpoints
│   │   ├── assistants.py # /assistants CRUD
│   │   ├── threads.py    # /threads and state management
│   │   ├── runs.py       # /runs execution and streaming
│   │   └── store.py      # /store vector storage
│   ├── services/         # Business logic layer
│   ├── core/             # Infrastructure (database, auth, orm)
│   ├── models/           # Pydantic request/response schemas
│   ├── middleware/       # ASGI middleware
│   ├── observability/    # OpenTelemetry tracing
│   ├── utils/            # Helper functions
│   ├── main.py           # FastAPI app entry point
│   ├── config.py         # HTTP/store config loading
│   └── settings.py       # Environment settings
├── tests/                # Test suite
├── alembic/              # Database migrations
└── pyproject.toml

Related Packages

  • aegra-cli: Command-line interface for project management

Documentation

For full documentation, see the docs/ directory.

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

aegra_api-0.9.18.tar.gz (371.8 kB view details)

Uploaded Source

Built Distribution

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

aegra_api-0.9.18-py3-none-any.whl (192.0 kB view details)

Uploaded Python 3

File details

Details for the file aegra_api-0.9.18.tar.gz.

File metadata

  • Download URL: aegra_api-0.9.18.tar.gz
  • Upload date:
  • Size: 371.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aegra_api-0.9.18.tar.gz
Algorithm Hash digest
SHA256 c1053e7a6901494968c0b7ce66a1e378f588e7f7f23170c1b6fe6f83794634b6
MD5 ea9268b56baaf53032554bba3c833e8d
BLAKE2b-256 b180fc7f1d72ea75f9964585c424eb431ec5e8d57443cc005ef9f641708f04df

See more details on using hashes here.

File details

Details for the file aegra_api-0.9.18-py3-none-any.whl.

File metadata

  • Download URL: aegra_api-0.9.18-py3-none-any.whl
  • Upload date:
  • Size: 192.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aegra_api-0.9.18-py3-none-any.whl
Algorithm Hash digest
SHA256 cf0045cd5cef988728c930ca0af2ad510b56555dcc24d57b5f6880a308b1ac5f
MD5 e802f91d4312070dc92bcfcde974e6b7
BLAKE2b-256 6ecea9dd5293f77c505089a057777e4f266e373199bccaaf1eb500c1946181ad

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