A minimal agent loop for tool-using language models
Project description
simple_agent_loop
A minimal agent loop for tool-using language models. ~200 lines. Handles parallel tool execution, session compaction, and subagent composition.
Install
pip install simple-agent-loop
Setup
import anthropic
import json
import simple_agent_loop as sal
client = anthropic.Anthropic() # uses ANTHROPIC_API_KEY env var
def invoke_model(tools, session):
# session["messages"] contains generic messages:
# {"role": "system", "content": "..."}
# {"role": "user", "content": "..."}
# {"role": "assistant", "content": "..."}
# {"type": "thinking", "content": "...", "signature": "..."}
# {"type": "tool_call", "name": "...", "id": "...", "input": {...}}
# {"type": "tool_result", "id": "...", "output": "..."}
# --- Convert generic messages to Anthropic API format ---
system_prompt = None
api_messages = []
assistant_blocks = []
tool_result_blocks = []
def flush_assistant():
nonlocal assistant_blocks
if assistant_blocks:
api_messages.append({"role": "assistant", "content": assistant_blocks})
assistant_blocks = []
def flush_tool_results():
nonlocal tool_result_blocks
if tool_result_blocks:
api_messages.append({"role": "user", "content": tool_result_blocks})
tool_result_blocks = []
for msg in session["messages"]:
role = msg.get("role")
msg_type = msg.get("type")
if role == "system":
system_prompt = msg["content"]
elif role == "user":
flush_assistant()
flush_tool_results()
api_messages.append({"role": "user", "content": msg["content"]})
elif role == "assistant":
flush_tool_results()
assistant_blocks.append({"type": "text", "text": msg["content"]})
elif msg_type == "thinking":
flush_tool_results()
block = {"type": "thinking", "thinking": msg["content"]}
if "signature" in msg:
block["signature"] = msg["signature"]
assistant_blocks.append(block)
elif msg_type == "tool_call":
flush_tool_results()
assistant_blocks.append({
"type": "tool_use", "id": msg["id"],
"name": msg["name"], "input": msg["input"],
})
elif msg_type == "tool_result":
flush_assistant()
output = msg["output"]
tool_result_blocks.append({
"type": "tool_result", "tool_use_id": msg["id"],
"content": output if isinstance(output, str) else json.dumps(output),
})
flush_assistant()
flush_tool_results()
# --- Call the model ---
kwargs = dict(model="claude-sonnet-4-5", max_tokens=16000, messages=api_messages)
if system_prompt:
kwargs["system"] = system_prompt
if tools:
kwargs["tools"] = tools
api_response = client.messages.create(**kwargs).to_dict()
# --- Parse response back to generic messages ---
# Return: [{"role": "assistant", "content": "..."}, {"type": "tool_call", ...}, ...]
messages = []
for block in api_response.get("content", []):
if block["type"] == "thinking":
msg = {"type": "thinking", "content": block["thinking"], "ts": sal.now()}
if "signature" in block:
msg["signature"] = block["signature"]
messages.append(msg)
elif block["type"] == "text" and block["text"]:
messages.append({"role": "assistant", "content": block["text"], "ts": sal.now()})
elif block["type"] == "tool_use":
messages.append({
"type": "tool_call", "name": block["name"],
"id": block["id"], "input": block["input"],
})
return messages
Hello World
No tools, single turn -- the model just responds:
session = init_session(
system_prompt="You are a helpful assistant.",
user_prompt="Say hello in three languages.",
)
result = agent_loop(invoke_model, [], session, max_iterations=1)
print(response(result)["content"])
Tool-Using Agent
Define tools as Anthropic tool schemas and provide handler functions. The handler receives tool input as keyword arguments and returns a string.
import requests
tools = [
{
"name": "get_weather",
"description": "Get the current weather for a city.",
"input_schema": {
"type": "object",
"properties": {
"city": {"type": "string", "description": "City name"},
},
"required": ["city"],
},
}
]
def get_weather(city):
resp = requests.get(f"https://wttr.in/{city}?format=j1")
data = resp.json()["current_condition"][0]
return json.dumps({
"city": city,
"temp_c": data["temp_C"],
"description": data["weatherDesc"][0]["value"],
})
session = init_session(
system_prompt="You answer weather questions. Use the get_weather tool.",
user_prompt="What's the weather in Tokyo and Paris?",
)
result = agent_loop(
invoke_model, tools, session,
tool_handlers={"get_weather": get_weather},
)
print(response(result)["content"])
The model will call get_weather twice (in parallel), see the results, and respond with a summary. The loop runs until the model responds without making any tool calls.
Subagents
A subagent is a tool handler that runs its own agent loop. The outer agent calls it like any tool and gets back a string result.
Example: Text Compressor (compressor.py)
A coordinator agent iteratively compresses text using two subagents: a shortener and a quality judge.
# Subagent: compresses text
def shorten(text):
session = init_session(
system_prompt="Rewrite the text to half its length. Output ONLY the result.",
user_prompt=text,
)
result = agent_loop(invoke_model, [], session, name="shortener", max_iterations=1)
shortened = response(result)["content"]
ratio = len(shortened) / len(text)
return json.dumps({"compression_ratio": round(ratio, 3), "shortened_text": shortened})
# Subagent: judges compression quality
def judge(original, shortened):
session = init_session(
system_prompt=(
"Compare original and shortened text. Return ONLY JSON: "
'{"verdict": "acceptable", "reason": "..."} or '
'{"verdict": "too_lossy", "reason": "..."}'
),
user_prompt=f"ORIGINAL:\n{original}\n\nSHORTENED:\n{shortened}",
)
result = agent_loop(invoke_model, [], session, name="judge", max_iterations=1)
return response(result)["content"]
The coordinator has tools for shorten and judge, and its system prompt
tells it to loop: shorten, judge, stop if too_lossy or diminishing returns,
otherwise shorten again. Each subagent is a one-shot agent loop
(max_iterations=1) with no tools of its own.
Example: Transform Rule Derivation (derive_transform.py)
A more complex example with four subagents and a coordinator. Given a source text and target text, it derives general transformation rules and specific info that together reproduce the target from the source.
# Subagent: applies rules + specific info to source text
def edit(text, rules, specific_info):
session = init_session(
system_prompt="Apply the rules to the text using the specific info. Output ONLY the result.",
user_prompt=f"SOURCE TEXT:\n{text}\n\nRULES:\n{rules}\n\nSPECIFIC INFO:\n{specific_info}",
)
result = agent_loop(invoke_model, [], session, name="editor", max_iterations=1)
return response(result)["content"]
# Subagent: scores how close the output is to the target
def judge_similarity(editor_output, target):
session = init_session(
system_prompt='Compare texts. Return JSON: {"score": 0-100, "differences": "..."}',
user_prompt=f"EDITOR OUTPUT:\n{editor_output}\n\nTARGET:\n{target}",
)
result = agent_loop(invoke_model, [], session, name="similarity-judge", max_iterations=1)
return response(result)["content"]
# Subagent: checks rules are abstract (no specific content leaked in)
def judge_generality(rules):
...
# Subagent: checks specific_info is a flat fact list
def judge_specific_info(specific_info):
...
The coordinator calls edit, then calls all three judges in parallel,
refines based on scores, and repeats until all judges score above 90.
Tool calls within a single model response execute in parallel automatically.
API Reference
Session Management
init_session(system_prompt, user_prompt)- Create a new sessionextend_session(session, message)- Append a message to the sessionsend(session, user_message)- Add a user message to the sessionfork_session(session)- Deep copy a session for branchingresponse(session)- Get the last assistant message, or None
Agent Loop
agent_loop(invoke_model, tools, session, tool_handlers=None, name=None, max_iterations=None)invoke_model(tools, session)- Function that receives the session with generic messages, calls the model API, and returns a list of generic messagestools- List of Anthropic tool schemas ([] for no tools)session- Session dict from init_sessiontool_handlers- Dict mapping tool names to handler functionsname- Agent name for log outputmax_iterations- Max model calls before stopping (None = unlimited)- Returns the session with all messages appended
Message Format
Messages use a generic format independent of any API:
{"role": "system", "content": "..."}
{"role": "user", "content": "..."}
{"role": "assistant", "content": "..."}
{"type": "thinking", "content": "..."}
{"type": "tool_call", "name": "...", "id": "...", "input": {...}}
{"type": "tool_result", "id": "...", "output": "..."}
Your invoke_model receives the raw session with these generic messages
and must return a list of generic messages. All API-specific conversion
happens inside invoke_model.
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 simple_agent_loop-0.1.5.tar.gz.
File metadata
- Download URL: simple_agent_loop-0.1.5.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7770548897108b0ff95da2af6ee88be2e49cde2685c3bcc4bff01ee3dd466fcb
|
|
| MD5 |
2709391e740471f8eae9ebff0b17fa2d
|
|
| BLAKE2b-256 |
2f4edf6cef4f9924b2ca53a697334c31e0c9eaceb66c62bc4697c0fbe906edba
|
Provenance
The following attestation bundles were made for simple_agent_loop-0.1.5.tar.gz:
Publisher:
python-publish.yml on tdb-alcorn/simple_agent_loop
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
simple_agent_loop-0.1.5.tar.gz -
Subject digest:
7770548897108b0ff95da2af6ee88be2e49cde2685c3bcc4bff01ee3dd466fcb - Sigstore transparency entry: 990492843
- Sigstore integration time:
-
Permalink:
tdb-alcorn/simple_agent_loop@0e51f9a443c062c68cf1dd783b7e56b7e368cb59 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/tdb-alcorn
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0e51f9a443c062c68cf1dd783b7e56b7e368cb59 -
Trigger Event:
release
-
Statement type:
File details
Details for the file simple_agent_loop-0.1.5-py3-none-any.whl.
File metadata
- Download URL: simple_agent_loop-0.1.5-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
727f2dd419f8ffb353871214e077eb66052cfc6cb8441baf7023785edc6b3be8
|
|
| MD5 |
31379ffe70e33cac3f1d21fdb794ed62
|
|
| BLAKE2b-256 |
7909fbab3d711a7eb9399d65e6f5451865277118ab029426af21435c67f55f36
|
Provenance
The following attestation bundles were made for simple_agent_loop-0.1.5-py3-none-any.whl:
Publisher:
python-publish.yml on tdb-alcorn/simple_agent_loop
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
simple_agent_loop-0.1.5-py3-none-any.whl -
Subject digest:
727f2dd419f8ffb353871214e077eb66052cfc6cb8441baf7023785edc6b3be8 - Sigstore transparency entry: 990492880
- Sigstore integration time:
-
Permalink:
tdb-alcorn/simple_agent_loop@0e51f9a443c062c68cf1dd783b7e56b7e368cb59 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/tdb-alcorn
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0e51f9a443c062c68cf1dd783b7e56b7e368cb59 -
Trigger Event:
release
-
Statement type: