File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -19,5 +19,6 @@ This document tracks which features from the original assistant have been implem
1919| Open OpenAI billing page | Done |
2020| Push-to-talk text-to-speech interface | Done |
2121| Interrupt AI speech with push-to-talk | Done |
22+ | Log function invocation names | Done |
2223
2324Update this table as features are migrated and verified to work in ` assistant_v2 ` .
Original file line number Diff line number Diff line change @@ -431,6 +431,7 @@ async fn handle_requires_action(
431431
432432 if let Some ( required_action) = & run_object. required_action {
433433 for tool in & required_action. submit_tool_outputs . tool_calls {
434+ println ! ( "{}{}" , "Invoking function: " . purple( ) , tool. function. name) ;
434435 if tool. function . name == "get_current_temperature" {
435436 tool_outputs. push ( ToolsOutputs {
436437 tool_call_id : Some ( tool. id . clone ( ) ) ,
You can’t perform that action at this time.
0 commit comments