Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/self_hosted_mcp_worker/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Self-hosted MCP worker

This example follows Anthropic's client-side MCP helper example at the same
This example follows the client-side MCP helper pattern at the same
level of abstraction: connect to an MCP server, discover its tools, convert
them, and run an existing self-hosted Environment Worker.

Expand Down
2 changes: 1 addition & 1 deletion src/arkruntime/_managed_agents_serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _dump(value: Any) -> Any:
- `NOT_GIVEN` → dropped by the caller (returned as-is; caller filters).
- `pydantic.BaseModel` → `.model_dump(exclude_unset=True, by_alias=True)`
so unset Optional fields don't leak `null` onto the wire (server-side
is Anthropic-flavoured `omit == null == unset`).
uses the `omit == null == unset` convention).
- `enum.Enum` → its `.value`. Handles enum-typed fields (e.g.
`EnvConfigType.CLOUD` → `"cloud"`) that get passed positionally.
- `list` / `tuple` → element-wise recursion.
Expand Down
Loading