From ce3605804db15a3829c6617f314feb0636e7732d Mon Sep 17 00:00:00 2001 From: luxuhui Date: Fri, 4 Oct 2024 04:04:11 +0800 Subject: [PATCH 1/2] feat: readme update for new start_agent fields --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6d0af4..abe8d7d 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,8 @@ This api starts an agent with given graph and override properties. The started a | ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | channel_name | (string) channel name, it needs to be the same with the one your browser/device joins, agent needs to stay with your browser/device in the same channel to communicate | | uid | (int)the uid which ai agent use to join | - -Example: +| system_instruction | The system instruction for the agent | +| voice | The voice of the agent | ```bash curl 'http://localhost:8080/start_agent' \ From 34417cdbcbc7fec7ab8199ec649683e6b31e3328 Mon Sep 17 00:00:00 2001 From: luxuhui Date: Fri, 4 Oct 2024 04:05:35 +0800 Subject: [PATCH 2/2] add missing example: --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index abe8d7d..2e1bab2 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,8 @@ This api starts an agent with given graph and override properties. The started a | system_instruction | The system instruction for the agent | | voice | The voice of the agent | +Example: + ```bash curl 'http://localhost:8080/start_agent' \ -H 'Content-Type: application/json' \