Skip to content
Closed
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
1 change: 1 addition & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Replace `cli_transport` with the directory of the example you want to run.

## Client examples

- `agent_swarm`: Demonstrates agent-to-agent coordination where a coordinator chains UTCP tools from multiple workers to build a swarm action plan.
- `cli_client`: Connects to tools exposed over the command line.
- `graphql_client`: Calls tools provided via a GraphQL service.
- `grpc_client`: Uses the gRPC transport.
Expand Down
7 changes: 7 additions & 0 deletions examples/agent_swarm/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module main

go 1.23.0

require github.com/universal-tool-calling-protocol/go-utcp v0.0.0

replace github.com/universal-tool-calling-protocol/go-utcp => ../..
Loading