Merge pull request #1243 from filintod/filinto/update-conversation-echo

Update conversation echo python README for http
This commit is contained in:
Marc Duiker 2025-09-03 15:31:15 +02:00 committed by GitHub
commit 48c111ead0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -39,7 +39,10 @@ expected_stdout_lines:
- '== APP - conversation == Output response: What is dapr?'
- '== APP - conversation == Tool calling input sent: What is the weather like in San Francisco in celsius?'
- '== APP - conversation == Output message: What is the weather like in San Francisco in celsius?'
- '== APP - conversation == No tool calls in response'
- '== APP - conversation == Tool calls detected:'
- "== APP - conversation == Tool call: {'id': '0', 'function': {'name': 'get_weather', 'arguments':"
- '== APP - conversation == Function name: get_weather'
- '== APP - conversation == Function arguments: '
expected_stderr_lines:
output_match_mode: substring
match_order: none
@ -71,8 +74,10 @@ The terminal console output should look similar to this, where:
```text
== APP == Tool calling input sent: What is the weather like in San Francisco in celsius?
== APP == Output message: What is the weather like in San Francisco in celsius?
== APP == No tool calls in response
```
== APP == Tool calls detected:
== APP == Tool call: {'id': '0', 'function': {'name': 'get_weather', 'arguments': 'location,unit'}}
== APP == Function name: get_weather
== APP == Function arguments: location,unit
```
<!-- END_STEP -->