Registry / llm-agents / anteroom

anteroom

JSON →
library1.174.0pypypi✓ verified 80d ago

Anteroom is a Python library for managing AI conversations, providing a unified interface for streaming, history, and tool calls. Current version is 1.174.0, with frequent releases.

pip install anteroom
INSTALL
IMPORT
SIG · ANTEROOM
A
anteroom
llm-agentspythonv1.174.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Anteroom
import anteroom
from anteroom import Anteroom

Initialize Anteroom client, send a message, and print the response.

from anteroom import Anteroom import os os.environ.setdefault('ANTEROOM_API_KEY', 'your-api-key') anteroom = Anteroom() response = anteroom.send("Hello, world!") print(response.text)
Debug
Known issues
breakingIn version 1.170.0, the `send` method was renamed to `chat`. Using `send` will raise AttributeError.
fix
Use `anteroom.chat("Hello")` instead of `anteroom.send("Hello")`.
affects: >=1.170.0,<1.171.0
gotchaAPI keys are not automatically loaded; you must set `ANTEROOM_API_KEY` environment variable or pass it to the constructor.
fix
Set `os.environ['ANTEROOM_API_KEY'] = '...'` or pass `api_key='...'` to `Anteroom()`.
affects: all
deprecatedThe `async` mode is deprecated as of 1.165.0 and will be removed in a future release.
fix
Use synchronous calls; for async, consider using `asyncio.to_thread`.
affects: >=1.165.0
Upgrade
Version history
1.174.0latest on PyPI · released Apr 26, 2026
Audit
Dependencies
python-dotenvoptionalUsed to load environment variables from .env files
Agent activity
41 hits · last 30 days
node
38
OpenAI (training)
1
Resources
anteroom — pip install anteroom · libregistry