fix: re-add DEFAULT_TEXT_MODEL import dropped by merge

Local main's unpushed commits had removed DEFAULT_TEXT_MODEL from the
crate::config import in main.rs, but the merged branch's new code at
two call sites still uses it. Textual three-way merge took the local
import line and the branch's call sites, producing a build break.
Re-add the symbol to the import.
This commit is contained in:
Hunter Bown
2026-04-25 01:57:17 -05:00
parent 298f5c6c51
commit 7f0444d26b
+1 -1
View File
@@ -51,7 +51,7 @@ mod ui;
mod utils;
mod working_set;
use crate::config::{Config, MAX_SUBAGENTS};
use crate::config::{Config, DEFAULT_TEXT_MODEL, MAX_SUBAGENTS};
use crate::eval::{EvalHarness, EvalHarnessConfig, ScenarioStepKind};
use crate::features::Feature;
use crate::llm_client::LlmClient;