Skip to main content

Async Python agent library and terminal REPL (OpenAI-compatible Chat Completions + sandbox).

Project description

pagent

pagent (English)

CI Coverage

Language: 中文 | English · Docs · For agents · llms.txt

pagent is a small async Python library for an Agent + tools loop over OpenAI-compatible Chat Completions. Good for scripts, experiments, and teaching—transparent message history, your own tools.

Documentation

https://synclionpaw.github.io/pagent/ — install, quick start, tools, events, Wire, providers.

Install

Requires Python 3.11+.

pip

pip install pagent
pip install "pagent[search]"   # optional web_search tool

uv

uv is a fast Python package and project manager (official docs).

uv pip install pagent
uv pip install "pagent[search]"

# or in a uv-managed project
uv add pagent
uv add "pagent[search]"

uvx (terminal REPL)

export DEEPSEEK_API_KEY="your-key"
uvx pagent
uvx pagent --thread-id demo

conda

conda activate your-env
pip install pagent
pip install "pagent[search]"

Conda envs usually install PyPI packages with pip inside the activated environment. Check conda-forge if you prefer a conda package when available.

Quick start

import asyncio
import os

from pagent import Agent, LLM, Session, tool


@tool()
def get_weather(city: str) -> str:
    """Return a fake weather summary for the city."""
    return f"It's sunny in {city} today."


async def main() -> None:
    if not os.getenv("OPENAI_API_KEY"):
        raise SystemExit("Please set OPENAI_API_KEY first.")

    agent = Agent(
        llm=LLM("gpt-4o-mini"),
        session=Session("You are a concise assistant. Use tools when needed."),
        tools=[get_weather],
        max_turns=8,
    )

    result = await agent.run("What's the weather in Xiamen?")
    print(result.content)
    print(agent.stats)


asyncio.run(main())

run() returns RunEnd; use .content for the answer.

Streaming & events

One agent timeline — pick an API by consumer (not two different event systems):

API You get Best for
agent.run(prompt) Final RunEnd No streaming
agent.arun(prompt) Answer text str Simple typing effect in scripts
agent.arun_events(prompt) Python Event dataclasses In-process Python: CLI, services, match / types
agent.arun_wire(prompt) NDJSON lines (JSON-RPC 2.0) Cross-language / frontend: SSE, WebSocket, TS switch (method)

Wire serializes the same events as native Event; see docs/events.md and docs/wire.md.

Minimal event consumer (build your own UI or logs):

import asyncio

from pagent import (
    Agent,
    LLM,
    RunEnd,
    Session,
    TextDelta,
    ToolCallBegin,
    ToolResult,
)


async def main():
    agent = Agent(LLM("gpt-4o-mini"), Session("You are helpful."), tools=[])

    async for event in agent.arun_events("What is 2 + 2?"):
        if isinstance(event, TextDelta):
            print(event.text, end="", flush=True)
        elif isinstance(event, ToolCallBegin):
            print(f"\n[calling {event.name}]", flush=True)
        elif isinstance(event, ToolResult):
            print(f" {event.content}", flush=True)
        elif isinstance(event, RunEnd):
            print(f"\n\n(done, {event.content!r})")


asyncio.run(main())

Common events: TextDelta (answer stream), ReasoningDelta (model thinking, if supported), ToolCallBegin / ToolResult, RunEnd (final result with .content and .reasoning_content).

Full list: docs/events.md. Frontend / JSON: docs/wire.md — each line is {"jsonrpc":"2.0","method":"TextDelta","params":{...}}.

async for line in agent.arun_wire("Hello"):
    # send `line` over SSE / WebSocket (already ends with \n)
    ...

Runnable demos are grouped under examples/; start with examples/README.md.

Models & API keys

Class Env var
LLM("gpt-4o-mini") OPENAI_API_KEY
DeepSeek() DEEPSEEK_API_KEY
Ollama(...), Vllm, Sglang optional provider keys
from pagent import DeepSeek, Ollama

llm = DeepSeek("deepseek-v4-flash")
llm = Ollama("llama3.2")

Server must expose OpenAI-compatible /v1/chat/completions.

Examples

Command Description
uv run pagent Interactive pagentv4 terminal app
uv run python -m examples.pagentv4.thread_based.conversation_only Thread-based conversation persistence
uv run python -m examples.pagentv4.thread_based.code_runner CodeRunner with sandbox tools
uv run python -m examples.pagentv4.runner.return_types text / message / acp / event projections
uv run --with fastapi --with uvicorn python examples/wire_browser/server.py Wire NDJSON + browser UI

Guide: docs/reasoning.md. Full-stack wire demo: examples/wire_browser/.

export DEEPSEEK_API_KEY="your-key"
uv run python -m examples.pagentv4.thread_based.conversation_only

Optional built-in tools

from pagent import Agent, LLM, Session, web_search

agent = Agent(LLM("gpt-4o-mini"), Session("..."), tools=[web_search])

See clock, region in pagent.defaults.

Notes

  • Requires an OpenAI Chat Completions–compatible API.
  • A minimal embeddable loop—not a full coding-agent product with file edit/shell.
  • Development & internals: docs/development.md

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

pagent-0.7.5.tar.gz (115.3 kB view details)

Uploaded Source

Built Distribution

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

pagent-0.7.5-py3-none-any.whl (154.0 kB view details)

Uploaded Python 3

File details

Details for the file pagent-0.7.5.tar.gz.

File metadata

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

File hashes

Hashes for pagent-0.7.5.tar.gz
Algorithm Hash digest
SHA256 e0361bb5b79bcd05c03dbff18b6f66440c30c5e79032bd530cdf1a0890195abd
MD5 a4531a65ed930dc82c207c34dad7cf13
BLAKE2b-256 93a478fd615a8041b7c8a31ebfb9706774f20a436b294bde0b48f574cc00a42e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pagent-0.7.5.tar.gz:

Publisher: publish.yml on SyncLionPaw/pagent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pagent-0.7.5-py3-none-any.whl.

File metadata

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

File hashes

Hashes for pagent-0.7.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ef756ffcc63002e059201e2f5a8b33261b314e8ab63cc966f23f7acb73743ad8
MD5 14b483213aab5bb5b83c957e2cfb0577
BLAKE2b-256 d12997cf882d966af737ee8f04a122be9e19b20ed21c858f9ec1db1d329b2321

See more details on using hashes here.

Provenance

The following attestation bundles were made for pagent-0.7.5-py3-none-any.whl:

Publisher: publish.yml on SyncLionPaw/pagent

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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