A lightweight async framework for structuring and running AI agents in Python
Project description
pygents
A lightweight async framework for structuring and running AI agents in Python. Define tools, queue turns, stream results.
Install
pip install pygents
Requires Python 3.12+.
Example
import asyncio
from pygents import Agent, Turn, tool
@tool()
async def greet(name: str) -> str:
return f"Hello, {name}!"
async def main():
agent = Agent("greeter", "Greets people", [greet])
# Use kwargs:
await agent.put(Turn("greet", kwargs={"name": "World"}))
# Or positional args:
await agent.put(Turn("greet", args=["World"]))
async for turn, value in agent.run():
print(value) # "Hello, World!"
asyncio.run(main())
Tools are async functions. Turns say which tool to run and with what args. Agents process a queue of turns and stream results. The loop exits when the queue is empty.
Features
- Streaming — agents yield
(turn, value)as results are produced - Inter-agent messaging — agents can send turns to each other
- Dynamic arguments — callable positional args and kwargs evaluated at runtime
- Timeouts — per-turn, default 60s
- Per-tool locking — opt-in serialization for shared state (lock is acquired inside the tool wrapper, so turn-level hooks run outside the tool lock)
- Fixed kwargs — decorator kwargs (e.g.
@tool(permission="admin")) are merged into every invocation; call-time kwargs override - Hooks —
@hook(hook_type, lock=..., **fixed_kwargs)decorator; hooks stored as a list and selected by type; turn, agent, tool, and memory hooks; same fixed_kwargs and lock options as tools - Serialization —
to_dict()/from_dict()for turns and agents
Design Decisions
Agent/Turn hook boundary — TurnHook covers events fired by the Turn itself (BEFORE_RUN, AFTER_RUN, ON_TIMEOUT, ON_ERROR, ON_COMPLETE). AgentHook covers agent-loop events (BEFORE_TURN, AFTER_TURN, ON_TURN_VALUE, BEFORE_PUT, AFTER_PUT, ON_PAUSE, ON_RESUME). ON_TURN_VALUE stays on Agent because it fires after routing (agent logic). Turn-lifecycle hooks can be registered on an agent via agent.turn_hooks (or the @agent.on_error / @agent.on_timeout / @agent.on_complete decorators) and are automatically propagated to every turn the agent runs.
Hook attachment style — Hooks are attached via method decorators on the instance (@agent.before_turn, @turn.on_complete, @my_tool.before_invoke) rather than constructor parameters. This keeps the API surface explicit and enables IDE autocompletion of hook signatures.
Docs
Full documentation: uv run mkdocs serve. MkDocs is an optional dependency—install with pip install -e ".[docs]" (or use uv run as above) so the library itself does not depend on it.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pygents-0.6.0.tar.gz.
File metadata
- Download URL: pygents-0.6.0.tar.gz
- Upload date:
- Size: 20.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
165d858284b9be3db5e7b5c2cfb12d9272585bc0c23c3fb887b185ccbabf2776
|
|
| MD5 |
77ecc88f31c037357cc1923c9c4e250b
|
|
| BLAKE2b-256 |
4de0e438ec6df9c63c286502fb6014eb8c31abb814db22d8a0a63d3b3e85c726
|
File details
Details for the file pygents-0.6.0-py3-none-any.whl.
File metadata
- Download URL: pygents-0.6.0-py3-none-any.whl
- Upload date:
- Size: 24.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7536ffddf8c7480fe1861a97beff26e27743b4b235a15f0ca187a77df0fcd11a
|
|
| MD5 |
09dde71bcefb92d27364db53d25ac897
|
|
| BLAKE2b-256 |
5384f7d31c6fec6e10cd595c1ff3c210fc685f803046947a6dc4f5644b572488
|