Raindrop integration for Strands Agents
Project description
raindrop-strands
Raindrop integration for Strands Agents (Python). Automatically captures agent invocations, model calls, tool usage, and token metrics via the Strands hook system.
Installation
pip install raindrop-strands strands-agents
strands-agents is a required dependency.
Quick Start
import os
from strands import Agent
from raindrop_strands import RaindropStrands
raindrop = RaindropStrands(
api_key=os.environ.get("RAINDROP_API_KEY"),
user_id="user_123",
convo_id="session_456",
)
agent = Agent(
model="us.amazon.nova-lite-v1:0",
system_prompt="You are a helpful assistant.",
)
raindrop.handler.register_hooks(agent)
result = agent("What is the capital of France?")
print(result)
raindrop.flush()
Omitting api_key disables telemetry shipping (a warning is emitted) but does not crash your application.
Debug Mode
Enable verbose logging to troubleshoot telemetry issues:
raindrop = RaindropStrands(
api_key=os.environ.get("RAINDROP_API_KEY"),
debug=True,
)
Configuration
raindrop = RaindropStrands(
api_key="rk_...", # Optional: Raindrop API key
user_id="user_123", # Optional: associate events with a user
convo_id="session_456", # Optional: conversation/session ID
tracing_enabled=True, # Optional: enable OTEL-based tracing (default: True)
bypass_otel_for_tools=True, # Optional: bypass OTEL for tool spans (default: True)
debug=False, # Optional: enable debug logging (default: False)
)
Factory Function
A create_raindrop_strands() factory function is also available for convenience:
from raindrop_strands import create_raindrop_strands
raindrop = create_raindrop_strands(api_key="rk_...")
agent = Agent(model="us.amazon.nova-lite-v1:0")
raindrop.handler.register_hooks(agent)
result = agent("Hello!")
raindrop.flush()
Identifying Users
raindrop.identify(
user_id="user_123",
traits={"plan": "pro", "email": "user@example.com"},
)
Tracking Signals
Track user feedback or other signals on AI responses:
raindrop.track_signal(
event_id="evt_...",
name="thumbs_up",
signal_type="feedback",
sentiment="POSITIVE",
)
Flush & Shutdown
Always flush before your process exits to ensure all data is sent:
raindrop.flush() # flush pending data
raindrop.shutdown() # flush + release resources
What Gets Captured
- Agent invocations: input prompt, output text, model name
- Token usage: prompt tokens, completion tokens, and cached tokens (from Bedrock/Anthropic
cacheReadInputTokens/cacheCreationInputTokens) - Tool call spans: individual tool spans tracked via
interaction.track_tool()with name, input, output, duration, and error - Finish reason:
stop_reasonorfinish_reasonfrom model responses (e.g.,end_turn,tool_use) - Errors: error type and message captured in event properties
- Async support: preserved via Strands' hook system
API
RaindropStrands(api_key, user_id, convo_id, tracing_enabled, bypass_otel_for_tools, debug)
| Option | Type | Default | Description |
|---|---|---|---|
api_key |
str | None |
None |
Raindrop API key (rk_...). Omit to disable telemetry |
user_id |
str | None |
None |
Associate all events with a user |
convo_id |
str | None |
None |
Group events into a conversation |
tracing_enabled |
bool |
True |
Enable OTEL-based tracing |
bypass_otel_for_tools |
bool |
True |
Bypass OTEL for tool spans |
debug |
bool |
False |
Enable debug logging |
Properties:
handler—RaindropEventHandlerinstance to register on agents
Methods:
flush()— flush pending telemetryshutdown()— flush and release resourcesidentify(user_id, traits)— identify a user with optional traitstrack_signal(event_id, name, ...)— track a signal event
Testing
cd packages/strands-python
pip install -e '.[dev]'
python -m pytest tests/ -v
Full Documentation
See the Raindrop Strands integration docs for full details.
License
MIT
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 raindrop_strands-0.0.2.tar.gz.
File metadata
- Download URL: raindrop_strands-0.0.2.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53df86b7515d4994944315fc1a9af8f5ad36dda7e9743d9305e16ecd6a2e2549
|
|
| MD5 |
15ef99c1e48f110dcfe7b8235110813f
|
|
| BLAKE2b-256 |
c65264acef8287f280864695966bfe330c6666e1765efa60de456fe0fe4c7245
|
File details
Details for the file raindrop_strands-0.0.2-py3-none-any.whl.
File metadata
- Download URL: raindrop_strands-0.0.2-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308c829d962b4b9cf19aabf343094816a5f2c63232d6abc4fc9c8265792d10ae
|
|
| MD5 |
14b83ed6b359aa517f4f583a980b0ca6
|
|
| BLAKE2b-256 |
b669d244d648d7ace9c552e4f325569463ec8b7787938ed7de9a9ea62da5db3a
|