From 8b77baf4a2c3a9c7798a54560f20f90f933a72ac Mon Sep 17 00:00:00 2001 From: Tao Chen Date: Mon, 20 Apr 2026 17:54:44 -0700 Subject: [PATCH] Fix README --- .../foundry-hosted-agents/invocations/01_basic/README.md | 2 +- .../foundry-hosted-agents/invocations/02_break_glass/README.md | 2 +- .../04-hosting/foundry-hosted-agents/invocations/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/samples/04-hosting/foundry-hosted-agents/invocations/01_basic/README.md b/python/samples/04-hosting/foundry-hosted-agents/invocations/01_basic/README.md index 78f5e1d26d..8daa5e8560 100644 --- a/python/samples/04-hosting/foundry-hosted-agents/invocations/01_basic/README.md +++ b/python/samples/04-hosting/foundry-hosted-agents/invocations/01_basic/README.md @@ -22,7 +22,7 @@ curl -X POST http://localhost:8088/invocations -i -H "Content-Type: application/ The server will respond with a JSON object containing the response text. The `-i` flag in the `curl` command includes the HTTP response headers in the output, which includes the session ID that can be used for multi-turn conversations. Here is an example of the response: -``` +```bash HTTP/1.1 200 content-length: 34 content-type: application/json diff --git a/python/samples/04-hosting/foundry-hosted-agents/invocations/02_break_glass/README.md b/python/samples/04-hosting/foundry-hosted-agents/invocations/02_break_glass/README.md index 78f5e1d26d..8daa5e8560 100644 --- a/python/samples/04-hosting/foundry-hosted-agents/invocations/02_break_glass/README.md +++ b/python/samples/04-hosting/foundry-hosted-agents/invocations/02_break_glass/README.md @@ -22,7 +22,7 @@ curl -X POST http://localhost:8088/invocations -i -H "Content-Type: application/ The server will respond with a JSON object containing the response text. The `-i` flag in the `curl` command includes the HTTP response headers in the output, which includes the session ID that can be used for multi-turn conversations. Here is an example of the response: -``` +```bash HTTP/1.1 200 content-length: 34 content-type: application/json diff --git a/python/samples/04-hosting/foundry-hosted-agents/invocations/README.md b/python/samples/04-hosting/foundry-hosted-agents/invocations/README.md index e21187df0b..0cba373c7b 100644 --- a/python/samples/04-hosting/foundry-hosted-agents/invocations/README.md +++ b/python/samples/04-hosting/foundry-hosted-agents/invocations/README.md @@ -5,4 +5,4 @@ This folder contains a list of samples that show how to host agents using the `i | Sample | Description | | --- | --- | | [01_basic](./01_basic) | A basic example of hosting an agent with the `invocations` API and carrying on a multi-turn conversation. | -| [02_break_glass](./02-break-glass) | An example of hosting an agent with the `invocations` API and a "break glass" scenario where you can create your own `invoke_handler` to handle specific types of invocations. | +| [02_break_glass](./02_break_glass) | An example of hosting an agent with the `invocations` API and a "break glass" scenario where you can create your own `invoke_handler` to handle specific types of invocations. |