error proning w none

This commit is contained in:
won
2026-03-05 19:15:07 -08:00
parent 80af840e3c
commit 77c8870d31
2 changed files with 5 additions and 2 deletions

View File

@@ -6217,7 +6217,9 @@ async fn handle_assistant_item_done_in_plan_mode(
{
maybe_complete_plan_item_from_message(sess, turn_context, state, item).await;
if let Some(turn_item) = handle_non_tool_response_item(item, true, None).await {
if let Some(turn_item) =
handle_non_tool_response_item(item, true, Some(&turn_context.cwd)).await
{
emit_turn_item_in_plan_mode(
sess,
turn_context,
@@ -6396,7 +6398,8 @@ async fn try_run_sampling_request(
needs_follow_up |= output_result.needs_follow_up;
}
ResponseEvent::OutputItemAdded(item) => {
if let Some(turn_item) = handle_non_tool_response_item(&item, plan_mode, None).await
if let Some(turn_item) =
handle_non_tool_response_item(&item, plan_mode, Some(&turn_context.cwd)).await
{
let mut turn_item = turn_item;
let mut seeded_parsed: Option<ParsedAssistantTextDelta> = None;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB