Skip to content

Commit 7e607a1

Browse files
authored
Update links and favicon
Update links and favicon
2 parents 87f4a6a + 27ed475 commit 7e607a1

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

_config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ versions:
1616

1717
url: https://utcp.io
1818

19+
# For version-specific builds, set the appropriate baseurl
20+
# For example, when building the v0.1 version: baseurl: "/v0.1"
21+
1922
# Set a path/url to a logo that will be displayed instead of the title
2023
# logo: "/assets/images/utcp-logo.png"
2124

2225
# Set the path to the favicon
23-
favicon_ico: "assets/images/black-logo-square.png"
26+
favicon_ico: "/assets/images/black-logo-square.ico"
2427

2528
# Color scheme supports "light" (default) and "dark"
2629
color_scheme: black

_includes/favicon.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<link rel="icon" href="{{ site.favicon_ico | relative_url }}" type="image/x-icon">
5.54 KB
Binary file not shown.

docs/for-tool-callers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,6 @@ await client.deregister_tool_provider("weather_api")
285285

286286
The `UtcpClient` is designed to be extensible. For advanced use cases, you can replace its core components with your own custom implementations.
287287

288-
- **Custom Tool Repositories**: By default, the client stores tools in memory. If you need to persist discovered tools in a database or a file-based cache, you can implement a custom `ToolRepository`. Learn more in the [Tool Repositories](./client/tool-repository.md) guide.
288+
- **Custom Tool Repositories**: By default, the client stores tools in memory. If you need to persist discovered tools in a database or a file-based cache, you can implement a custom `ToolRepository`. Learn more in the [Tool Repositories](./client/tool-repository) guide.
289289

290-
- **Custom Tool Search Strategies**: The default search strategy uses tag and description matching. If you need more sophisticated search capabilities, such as semantic search or integration with a vector database, you can implement a custom `ToolSearchStrategy`. Learn more in the [Tool Search Strategies](./client/tool-search-strategy.md) guide.
290+
- **Custom Tool Search Strategies**: The default search strategy uses tag and description matching. If you need more sophisticated search capabilities, such as semantic search or integration with a vector database, you can implement a custom `ToolSearchStrategy`. Learn more in the [Tool Search Strategies](./client/tool-search-strategy) guide.

docs/for-tool-providers.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -201,18 +201,18 @@ When providing tool definitions, make sure to document which variables users nee
201201

202202
For details on provider-specific configuration, see the dedicated pages for each type:
203203

204-
- [HTTP Provider](providers/http.md)
205-
- [HTTP Stream Provider](providers/http-stream.md)
206-
- [Server-Sent Events (SSE) Provider](providers/sse.md)
207-
- [WebSocket Provider](providers/websocket.md)
208-
- [gRPC Provider](providers/grpc.md)
209-
- [GraphQL Provider](providers/graphql.md)
210-
- [Command-Line (CLI) Provider](providers/cli.md)
211-
- [Model Context Protocol (MCP) Provider](providers/mcp.md)
212-
- [Text File Provider](providers/text.md)
213-
- [TCP Provider](providers/tcp.md)
214-
- [UDP Provider](providers/udp.md)
215-
- [WebRTC Provider](providers/webrtc.md)
204+
- [HTTP Provider](providers/http)
205+
- [HTTP Stream Provider](providers/http-stream)
206+
- [Server-Sent Events (SSE) Provider](providers/sse)
207+
- [WebSocket Provider](providers/websocket)
208+
- [gRPC Provider](providers/grpc)
209+
- [GraphQL Provider](providers/graphql)
210+
- [Command-Line (CLI) Provider](providers/cli)
211+
- [Model Context Protocol (MCP) Provider](providers/mcp)
212+
- [Text File Provider](providers/text)
213+
- [TCP Provider](providers/tcp)
214+
- [UDP Provider](providers/udp)
215+
- [WebRTC Provider](providers/webrtc)
216216

217217
## Implementing a Discovery Endpoint
218218

0 commit comments

Comments
 (0)