Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assistant_v2/FEATURE_PROGRESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ This document tracks which features from the original assistant have been implem
| Open OpenAI billing page | Done |
| Push-to-talk text-to-speech interface | Done |
| Interrupt AI speech with push-to-talk | Done |
| Log function invocation names | Done |

Update this table as features are migrated and verified to work in `assistant_v2`.
1 change: 1 addition & 0 deletions assistant_v2/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ async fn handle_requires_action(

if let Some(required_action) = &run_object.required_action {
for tool in &required_action.submit_tool_outputs.tool_calls {
println!("{}{}", "Invoking function: ".purple(), tool.function.name);
if tool.function.name == "get_current_temperature" {
tool_outputs.push(ToolsOutputs {
tool_call_id: Some(tool.id.clone()),
Expand Down