Drop-in Anthropic SDK wrapper for AgentLoop — adds memory retrieval and turn logging to messages.create calls.
Project description
agentloop-py-anthropic
Drop-in wrapper that adds AgentLoop memory
retrieval and turn logging to every anthropic.messages.create call.
from anthropic import Anthropic
from agentloop import AgentLoop
from agentloop_anthropic import wrap_anthropic
anthropic = wrap_anthropic(
Anthropic(),
loop=AgentLoop(api_key="ak_..."),
)
msg = anthropic.messages.create(
model="claude-opus-4-7",
max_tokens=1024,
messages=[{"role": "user", "content": "What's the Pix limit at night?"}],
)
That's the whole integration.
What happens under the hood
For every messages.create call:
- Extracts the last user message as the query
- Calls
loop.search(query)— pulls any relevant corrections - Appends them to your
systemprompt (or creates one if absent) - Calls Anthropic with the augmented system prompt
- Calls
loop.log_turn(question, answer)with the assembled text
If either AgentLoop call fails, your Anthropic call still succeeds.
Install
pip install agentloop-py agentloop-py-anthropic anthropic
Per-call options
msg = anthropic.messages.create(
model="claude-opus-4-7",
max_tokens=1024,
messages=[...],
agentloop={
"user_id": "u_123",
"session_id": "sess_abc",
"signals": {"thumbs_down": True},
"metadata": {"latency_budget_ms": 500},
"skip": False,
"search": False, # or {"limit": 5, "tags": ["pix"]}
},
)
Configuration (passed at wrap time)
anthropic = wrap_anthropic(
Anthropic(),
loop=loop,
# Custom memory injection. Default: append to system prompt.
# Handles both string and array-of-text-blocks system forms.
inject_memories=lambda memories, existing_system: ...,
# Auto-detect signals from the response before log_turn.
detect_signals=lambda question, answer, memories: {
"agent_punted": "not sure" in answer.lower(),
},
search_limit=3,
search_tags=["production"],
only_log_when_signaled=False,
)
Low-level API
from agentloop_anthropic import ask_with_agentloop, PerCallOptions
from agentloop_anthropic._ask import WrapOptions
resp = ask_with_agentloop(
anthropic, # raw, unwrapped Anthropic client
messages=[{"role": "user", "content": question}],
per_call=PerCallOptions(user_id="u_123"),
config=WrapOptions(loop=loop),
model="claude-opus-4-7",
max_tokens=1024,
)
Not mutated
wrap_anthropic(client) returns a distinct wrapper. Your original
client stays unwrapped and usable.
Streaming
Not supported in v0.1. Same note as agentloop-py-openai — planned
for a later release.
License
MIT
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
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 agentloop_py_anthropic-0.1.2.tar.gz.
File metadata
- Download URL: agentloop_py_anthropic-0.1.2.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ae39f039e57234af96718a75dd1499dce3e10c5a10c6866c8ec135b2e9d7312
|
|
| MD5 |
310a70c47610770a1b8f1ad0d36a8d28
|
|
| BLAKE2b-256 |
50beb4a00df5bcf456fa2bd457a7a71c7ab5d45ec1511dfeff162fc001754948
|
File details
Details for the file agentloop_py_anthropic-0.1.2-py3-none-any.whl.
File metadata
- Download URL: agentloop_py_anthropic-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58ab7778b32532a40993bc024a801642155a4a0c3aa51e6a52b6d14337306316
|
|
| MD5 |
f2ab227dd2f351c6a8902e1cb17291a4
|
|
| BLAKE2b-256 |
79dbfa4d6b9e78597edf968dcf956163205894d4cb99dd824438d581f182d044
|