venkat-srinivasan-nexusflow commited on
Commit
fcb0551
1 Parent(s): 328f1a2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -120,13 +120,13 @@ You can do this by adding a `chat` tool, and allowing it to do so in the system
120
  "type": "function",
121
  "function": {
122
  "name": "chat",
123
- "description": "Call this tool when you want to chat with the user. The user won't see anything except for whatever you pass into this function.",
124
  "parameters": {
125
  "type": "object",
126
  "properties": {
127
  "chat_string": {
128
  "type": "string",
129
- "description": "The string to send to the user to chat back to them.",
130
  }
131
  },
132
  "required": ["chat_string"],
@@ -137,7 +137,7 @@ You can do this by adding a `chat` tool, and allowing it to do so in the system
137
 
138
  And the following system prompt, as an example (but feel free to experiment to make Athene-V2-Agent behave the way you want it to!):
139
  ```python
140
- {"role" : "system", "content" : "Make sure to use the chat function to provide the final answer to the user."},
141
  ```
142
 
143
  Please see the example [Link](example/weather_with_chat.py) here for a demo of this.
 
120
  "type": "function",
121
  "function": {
122
  "name": "chat",
123
+ "description": "Call this tool when you want to chat with the user. The user won't see anything except for whatever you pass into this function. You can use this tool to ask for more information when insufficient information is presented, and to send the final results back to the user.",
124
  "parameters": {
125
  "type": "object",
126
  "properties": {
127
  "chat_string": {
128
  "type": "string",
129
+ "description": "The chat message to send to the user to chat back to them.",
130
  }
131
  },
132
  "required": ["chat_string"],
 
137
 
138
  And the following system prompt, as an example (but feel free to experiment to make Athene-V2-Agent behave the way you want it to!):
139
  ```python
140
+ {"role" : "system", "content" : "You can use the chat tool to ask the user for more information, and to send the final results."},
141
  ```
142
 
143
  Please see the example [Link](example/weather_with_chat.py) here for a demo of this.