@@ -38,7 +38,7 @@ expected_stdout_lines:
3838 - '== APP - conversation == Output response: What is dapr?'
3939 - '== APP - conversation == Tool calling input sent: What is the weather like in San Francisco in celsius?'
4040 - '== APP - conversation == Output message: What is the weather like in San Francisco in celsius?'
41- - '== APP - conversation == No tool calls in response '
41+ - '== APP - conversation == Tool calls detected: [{"id":"0","function":{"name":"get_weather","arguments":"location,unit"}}] '
4242expected_stderr_lines:
4343output_match_mode: substring
4444match_order: none
@@ -63,12 +63,12 @@ The terminal console output should look similar to this, where:
6363
6464- The app then sends an input ` What is the weather like in San Francisco in celsius? ` to the ` echo ` Component mock LLM.
6565- The mock LLM echoes ` What is the weather like in San Francisco in celsius? ` and calls the ` get_weather ` tool.
66- - Since we are using the ` echo ` Component mock LLM, the tool call is not executed and the LLM returns ` No tool calls in response ` .
66+ - The echo Component calls the ` get_weather ` tool and returns the requested weather information .
6767
6868``` text
6969== APP == Tool calling input sent: What is the weather like in San Francisco in celsius?
7070== APP == Output message: What is the weather like in San Francisco in celsius?
71- == APP == No tool calls in response
71+ == APP == Tool calls detected: [{"id":"0","function":{"name":"get_weather","arguments":"location,unit"}}]
7272```
7373
7474<!-- END_STEP -->
@@ -107,11 +107,12 @@ The terminal console output should look similar to this, where:
107107- The mock LLM echoes ` What is dapr? ` .
108108- The app then sends an input ` What is the weather like in San Francisco in celsius? ` to the ` echo ` Component mock LLM.
109109- The mock LLM echoes ` What is the weather like in San Francisco in celsius? `
110+ - The echo Component returns the information from the ` get_weather ` tool call.
110111
111112``` text
112113== APP - conversation == Conversation input sent: What is dapr?
113114== APP - conversation == Output response: What is dapr?
114115== APP - conversation == Tool calling input sent: What is the weather like in San Francisco in celsius?
115116== APP - conversation == Output message: What is the weather like in San Francisco in celsius?
116- == APP - conversation == No tool calls in response
117+ == APP == Tool calls detected: [{"id":"0","function":{"name":"get_weather","arguments":"location,unit"}}]
117118```
0 commit comments