welt-io-strands
The Strands Agents (Python) adapter for Welt's wire contract.
Install
uv add welt-io-strands
Usage
See examples/agent — the smallest complete agent built on this package (text streaming, tool use, image generation, file output, file input, and human-approval tools), which doubles as the example for Welt's Quick Start. The sections below explain the adapters it wires in.
Supported Versions
Welt
While both are 0.x, a welt-io-strands 0.Y release supports Welt v0.Y. From 1.0 on, a release supports any Welt release that shares its major version, and the minor versions move independently. Support is best effort either way, and other combinations come with no guarantee.
Strands Agents
| Package | Installable | Version CI runs against |
|---|---|---|
strands-agents |
>=1.13.0 |
1.51.0 |
Every push and pull request runs the suite at both ends of that range. That is best effort rather than a guarantee: the floor is where the suite was last seen to pass, so a later release may raise it, and no ceiling is declared at all.
Something misbehaving inside that range is worth an issue.
API
The wire between Welt and the agent is JSON, specified by Welt's wire contract — plain Strands values do not fit it in either direction. Two functions adapt the inbound payload, two the outbound stream.
Inbound
decode_messages(messages)
Returns a copy of Welt's Converse-shaped messages with the base64-encoded file bytes restored to the raw bytes Strands expects; everything else — the format token included — is carried over untouched, and the input is left alone.
decode_interrupt_responses(responses)
Turns Welt's resume payload — a mapping of interrupt id to the answer a human chose and the widget it came from — into the interruptResponse items that Agent.stream_async resumes from. The answer travels on as the value it was given; the widget it came from is Welt's vocabulary, and a tool that reads its own option values already knows which of them it declared.
What arrives is taken as correct
Welt builds the payload and checks its own output against the wire contract before releasing it, so these two functions do no field validation of their own. A payload that departs from the contract is a bug on the sending side rather than an input to guard against, and it surfaces as an ordinary error from whatever touches it first — a KeyError, a TypeError, or binascii.Error from bytes that are not base64.
The one thing decode_messages refuses outright is a content block of a kind Welt never sends. A messages turn carries only text, image, document, and video blocks; a toolUse or toolResult block is not a malformed one of those but a forged conversation turn, and rebuilt into history it would let a caller that is not Welt put words the model treats as its own past tool calls and their results into the run. It raises ValueError. This is a trust-boundary check, not the field validation the contract otherwise saves you from.
Outbound
renderable_events(events, agent=..., files_from=...)
Reduces raw stream_async events — not JSON-serializable as-is — to the events Welt renders:
| Strands emits | On the wire | In the Slack thread |
|---|---|---|
| Text deltas | data |
The streamed reply |
| Tool invocations and results | current_tool_use / tool_result |
"Using tool" indicators (tool output stays off the wire) |
Image / document / video blocks the model produces, or a tool named in files_from returns |
file |
An uploaded file (size limits) |
| Pending interrupts | interrupt |
Buttons and/or a text field |
A run that stops for human input ends its stream with one interrupt event per pending interrupt; agents that do not use interrupts see no change.
A tool hands files to the model for either of two reasons — to have it read them, or to give them to the human — and only the agent knows which is which, so name the tools whose files belong in the thread:
async for event in renderable_events(
stream, agent=agent, files_from={"generate_image"}
):
A tool left out keeps its files to the model: strands-tools' file_read reading a PDF does not drop it into the thread as a side effect. A tool named there needs no code of its own — strands-tools' generate_image returns the image as a tool-result block, and naming it is all it takes; a tool of your own returns image, document, or video blocks the same way. The agent is what makes the names resolvable: its messages hold the tool behind each result, the only place that survives a resume, where the stream carries the result alone.
Uploaded names come from the block — a document's own name plus its format, the block's kind for the rest (image.png). That name is the model's handle on the document as much as a filename, and Converse rejects a request whose messages carry two documents under one name, so a tool that returns documents has to keep their names apart across the run: strands-tools' file_read appends a short uuid to each.
Each event carries only what Welt reads. A current_tool_use is cut down to the name and id behind the indicator, so the tool's arguments — which Strands re-sends in full on every input delta — stay off the wire, and an event with nothing to render (a text chunk the model left empty, a file with no bytes) is not sent at all.
interrupt_reason(message, options=..., input=...)
Builds the structured reason Welt renders as a message with the specified widgets — choice buttons (options), a free-text field (input), or both. An option's value is any JSON value, and the pressed button answers with it as it was declared; with neither widget the message renders as itself and Welt's default Approve / Deny buttons answer it. The specs are the wire's own shapes, typed as OptionSpec and InputSpec, and omitted fields keep Welt's defaults:
answer = tool_context.interrupt(
"deploy-approval",
reason=interrupt_reason(
"Deploy to prod?",
[
{"value": "Deploy", "style": "primary"},
{"value": "Cancel"},
],
input={"label": "Or type your answer"},
),
)
Building the reason through this helper is what makes a typo an error. ToolContext.interrupt takes its reason as Any, so a dict literal handed to it directly is checked by nothing, and Welt's reaction to a reason it cannot match is its default Approve / Deny buttons — no error, no log, just widgets you did not ask for. The typed parameters catch a misspelled key before the run; the checks inside catch it in runs where no type checker was involved. What they check is the shape, not the size: how many buttons one Slack block holds, and how long a button value may be, are Welt's to enforce.
Working with interrupts
Welt's Interrupts doc covers the Slack side: how each reason renders, who can answer, multiple questions, and expiry. On the Strands side:
- Prefix your interrupt names (
myapp-deploy-approval). Hook-raised interrupts must be unique across the whole event, tool-raised ones within their tool — a prefix keeps both as the agent grows. - Gate your own tool with
interrupt(), and everything else with steering. A tool you wrote can ask for itself; a tool you did not — from strands-tools, or an MCP server — is gated from outside by aSteeringHandlerreturningInterrupt, which also puts the decision for every tool in one place. A handler cannot declare buttons, so its questions get Welt's default Approve / Deny buttons and it reads the boolean they answer with. The example agent gatesgenerate_imagethis way. - Strands' ready-made
HumanInTheLoopintervention works over Welt as-is. Its string reasons render with Welt's default Approve / Deny buttons, and its default evaluator reads thetruethey answer with as approval. Do not passask: both of its inline modes block the agent waiting for input that Slack can never deliver — the default interrupt/resume mode is the one Welt drives. - Route stdio consent prompts through interrupts instead. For strands-tools packages that gate themselves behind a stdio prompt, set
BYPASS_TOOL_CONSENT=trueand letHumanInTheLoopdo the gating over Slack. The strands-toolshandoff_to_usertool is likewise stdio-bound; a small interrupt-raising tool of your own is the replacement. - Code before
interruptruns again on resume. Strands re-executes the interrupted tool from its start, so whatever precedes an interrupt and must not run twice — side effects, or work that must match what the human approved — has to be skipped on the second pass. Memoizing ontool_context.tool_use["toolUseId"], the same id on both passes, is enough: the cache lives in the same process as the interrupt state it pairs with. The example agent'ssample_draft_reportshows the pattern.
License
MIT
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 welt_io_strands-0.7.0.tar.gz.
File metadata
- Download URL: welt_io_strands-0.7.0.tar.gz
- Upload date:
- Size: 22.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf7d15ec83470af1b7d21e8652ac89c6cec1c985a48604534f50bca60709fc65
|
|
| MD5 |
803b7a41e41154e4b423e87081bc4a3a
|
|
| BLAKE2b-256 |
6df47c68fd5a13f2318904bfab83df656c2cc651ccfce48656b0549ba3443123
|
File details
Details for the file welt_io_strands-0.7.0-py3-none-any.whl.
File metadata
- Download URL: welt_io_strands-0.7.0-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4ec4fa71ac2568dfb71a38c0bc064737d7f52e3edfb66115131b9670bba13cf
|
|
| MD5 |
e122802357130445b58c0339a7b4a874
|
|
| BLAKE2b-256 |
e8e1711387ef1ef48701092572fb507fc615fd528a919d8d935bb05b0f9b39d2
|