nagents
A lightweight LLM agent framework with direct HTTP-based provider integration.
Features
- Multi-Provider Support: OpenAI, Anthropic Claude, and Google Gemini APIs
- Streaming Events: Real-time text chunks, tool calls, and usage statistics
- Tool Execution: Register Python functions as tools with automatic schema generation
- Session Management: SQLite-based conversation persistence
- Batch Processing: Process multiple requests efficiently
- Python Harness Extensions: Custom context transforms, lifecycle hooks, and replaceable compaction algorithms
- Optional Terminal Client:
ngnprovides interactive coding, approvals, sessions, and headless JSON events - Minimal Dependencies: Only
aiohttpandaiosqliterequired
Library Installation
pip install nagents
ngn Terminal Client
ngn is an optional terminal and headless coding harness. The published
v0.5.0 release includes
the CLI and the tui extra. This README describes the current source checkout,
which also contains changes after that release. See
release availability before
assuming a particular command or fix is in an installed distribution.
Keep the existing Poetry workflow from the repository root:
poetry install -E dev -E tui
poetry run ngn --demo
For a new local editable environment with uv, from the repository root:
uv venv --python 3.13
uv pip install --python .venv/bin/python -e '.[tui]'
uv run --no-project --python .venv/bin/python ngn --demo
Do not recreate an existing Poetry-managed .venv; keep using Poetry or choose
a separate local environment. This uv workflow does not require uv sync,
uv lock, or changes to the existing uv.lock. The explicit interpreter needs
no activation. See ngn installation for optional
activation, headless-only installation, and isolated uvx/uv tool alternatives.
The offline demo needs no API key, makes no model requests, skips Python plugins,
and performs no workspace edits or shell commands. It does save demo
conversations locally. Send demo approval to try a change-preview dialog or
demo subagents to exercise three native async jobs without provider calls.
For a real model, set the provider key outside YAML and launch through the same
environment, for example poetry run ngn --auth api-key --model MODEL_ID or
uv run --no-project --python .venv/bin/python ngn --auth api-key --model MODEL_ID.
With the environment activated, use ngn run --json "your prompt" for headless
integration. Non-interactive approvals fail closed.
Type / for selectable commands from the harness, skills, and trusted plugins.
Shift+Enter inserts a newline; Tab cycles agent profiles. Input queues while work
is active, or use --submit-mode interrupt. The default terminal theme inherits
terminal colors; try --theme graphite, ocean, or ember, and disable motion
with --no-animations. Build-capable delegation uses the built-in agent profile
by default, never exceeds the parent's permissions, and defaults to depth two
(root 0, child 1, grandchild 2).
For ChatGPT/Codex subscription access, start ngn without --demo and use
/login, or run ngn login chatgpt (same as --device-auth). Device login must
be enabled in your ChatGPT security/workspace settings. This uses a separate
Codex Responses route, not a general-purpose OpenAI API key. ngn login also
selects OpenRouter through a browser sign-in or stores API keys for OpenAI,
Anthropic, Gemini, and custom OpenAI-compatible endpoints; keys are entered
hidden or referenced with --api-key-env, and ngn login --status/ngn logout
manage the saved selection. See the guide for credential storage and --auth
selection. Saved credentials are never sent to custom endpoints.
Configuration uses top-level YAML, not an ngn: wrapper. Priority is built-ins
< saved ngn login selection < NGN_* environment defaults < global YAML <
trusted project YAML < explicit YAML < CLI. The global file is
~/.config/ngn/config.yaml (respecting XDG_CONFIG_HOME); workspace
.ngn/config.yaml needs --trust-project, or explicit selection with --config.
Any explicitly selected config file is trusted.
See the full schema and recipes for types,
defaults, ranges, profile replacement, relative paths, and LiteLLM endpoints.
Optional microphone dictation uses the voice extra, a separate transcription
API-key reference, and explicit opt-in. Transcriptions become editable previews,
not automatically sent prompts. ChatGPT subscription access does not cover the
paid transcription API. See dictation.
Python plugins can change how the agent builds context, compacts history, and executes tools. The TUI uses the same harness as the headless client; Textual remains an optional dependency. See the ngn usage guide, custom Python behavior example, and upstream research.
HTTP Interfaces
The current checkout includes a web-only Agent Designer: a YAML-backed agent
canvas with per-agent providers, instructions, selected tools/MCPs, delegation,
chat, and persisted context/request inspection. See the
Agent Designer guide for configuration and terminal
execution with ngn --design.
These are separate applications, not interchangeable launch commands:
| Command | Purpose | Installation |
|---|---|---|
python -m nagents.server |
Legacy HTTP/SSE API server. The current source has no bundled chat UI. | Current checkout with [server]; see the legacy API server guide for token, bind, and deployment setup. |
ngn serve |
Local React client for the ngn coding harness, sharing its workspace sessions and approvals. Also the Docker image's default command. | Current checkout with [web] and built frontend assets; not included in v0.5.0. See the local web client guide. |
The new frontend source lives in src/nagents/web-ui/; its Vite build goes to
src/nagents/web/static/. Plain ngn serve uses the bundled assets without
building or reloading. Use ngn serve --dev in an editable checkout to build stale
assets and reload after frontend or Python edits. Source build/check commands are in
Contributing.
The legacy server's authentication hardening and removal of its old UI are also
post-0.5.0 changes. Do not apply the current security guarantees to that older
wheel or an unverified container image. Both applications are trusted-operator
tools, not sandboxes or multi-user services.
Quick Start
import asyncio
from pathlib import Path
from nagents import Agent, Provider, ProviderType, SessionManager
async def main():
# Create a provider
provider = Provider(
provider_type=ProviderType.OPENAI_COMPATIBLE,
api_key="your-api-key",
model="gpt-4o-mini",
)
# Create an agent
agent = Agent(
provider=provider,
session_manager=SessionManager(Path("sessions.db")),
streaming=True,
)
# Run a conversation
async for event in agent.run("Hello, how are you?"):
if hasattr(event, "chunk"):
print(event.chunk, end="")
await agent.close()
asyncio.run(main())
Providers
nagents supports three provider types:
| Provider | Type | Models |
|---|---|---|
| OpenAI | ProviderType.OPENAI_COMPATIBLE |
gpt-4o, gpt-4o-mini, etc. |
| Anthropic | ProviderType.ANTHROPIC |
claude-3-5-sonnet, claude-3-opus, etc. |
ProviderType.GEMINI_NATIVE |
gemini-2.0-flash, gemini-1.5-pro, etc. |
With Tools
def get_weather(city: str) -> str:
"""Get the current weather for a city."""
return f"Weather in {city}: Sunny, 22°C"
agent = Agent(
provider=provider,
session_manager=SessionManager(Path("sessions.db")),
tools=[get_weather],
)
async for event in agent.run("What's the weather in Paris?"):
...
With Session Persistence
from pathlib import Path
from nagents import SessionManager
session_manager = SessionManager(Path("sessions.db"))
agent = Agent(
provider=provider,
session_manager=session_manager,
)
# Use a specific session ID for conversation continuity
async for event in agent.run("Remember my name is Alice", session_id="user-123"):
...
Documentation
- ngn Installation
- ngn Usage Guide
- ngn Configuration Reference
- ngn Local Web Client
- Legacy API Server
- Installation
- Quick Start
- Providers Guide
- Tools Guide
- API Reference
License
MIT
Release files for nagents 0.12.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nagents-0.12.0.tar.gz | 783.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| nagents-0.12.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.3 MB
Release files / nagents-0.12.0.tar.gz
| Download URL | nagents-0.12.0.tar.gz |
|---|---|
| Size | 783.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
78547ca260df8e82ad595456a2687321a988b7b6959fa30be9606c6c5ff0a233
|
|
BLAKE2b-256 checksum How to use checksums |
e2c05c24412cc6811b954d1238817b03558b5dbc7213caa1fcf8b7c3b96eee3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 19, 2026.
Transparency logRelease files / nagents-0.12.0-py3-none-any.whl
| Download URL | nagents-0.12.0-py3-none-any.whl |
|---|---|
| Size | 552.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3f4bc170f8ccc0b77f4745b50c5cad1faf8b8803daca555faff3f670abd93a8c
|
|
BLAKE2b-256 checksum How to use checksums |
7dc82709b3ee5ff2870a128779a2b9d7111a8bc4c491d6531c9f1afb28097575
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 19, 2026.
Transparency log