Skip to content

Commit 48c111e

Browse files
authored
Merge pull request #1243 from filintod/filinto/update-conversation-echo
Update conversation echo python README for http
2 parents 93becdd + a5105be commit 48c111e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

conversation/python/http/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ expected_stdout_lines:
3939
- '== APP - conversation == Output response: What is dapr?'
4040
- '== APP - conversation == Tool calling input sent: What is the weather like in San Francisco in celsius?'
4141
- '== APP - conversation == Output message: What is the weather like in San Francisco in celsius?'
42-
- '== APP - conversation == No tool calls in response'
42+
- '== APP - conversation == Tool calls detected:'
43+
- "== APP - conversation == Tool call: {'id': '0', 'function': {'name': 'get_weather', 'arguments':"
44+
- '== APP - conversation == Function name: get_weather'
45+
- '== APP - conversation == Function arguments: '
4346
expected_stderr_lines:
4447
output_match_mode: substring
4548
match_order: none
@@ -71,8 +74,10 @@ The terminal console output should look similar to this, where:
7174
```text
7275
== APP == Tool calling input sent: What is the weather like in San Francisco in celsius?
7376
== APP == Output message: What is the weather like in San Francisco in celsius?
74-
== APP == No tool calls in response
75-
```
77+
== APP == Tool calls detected:
78+
== APP == Tool call: {'id': '0', 'function': {'name': 'get_weather', 'arguments': 'location,unit'}}
79+
== APP == Function name: get_weather
80+
== APP == Function arguments: location,unit
7681
```
7782

7883
<!-- END_STEP -->

0 commit comments

Comments
 (0)