Address comments

This commit is contained in:
Tao Chen
2026-04-27 09:48:05 -07:00
parent 78c7d5fc84
commit 8940b45d5b
7 changed files with 91 additions and 8 deletions
@@ -18,7 +18,7 @@ The agent is hosted using the [Agent Framework](https://github.com/microsoft/age
> Depending on how you run the agent host, you can invoke the agent using `curl` (`Invoke-WebRequest` in PowerShell) or `azd`. Please refer to the [parent README](../../README.md) for more details. Use this README for sample queries you can send to the agent.
Send a POST request to the server with a JSON body containing a "message" field to interact with the agent. For example:
Send a POST request to the server with a JSON body containing an `"input"` field to interact with the agent. For example:
```bash
curl -X POST http://localhost:8088/responses -H "Content-Type: application/json" -d '{"input": "Hi"}'