This commit is contained in:
jif-oai
2025-10-14 13:34:52 +01:00
parent f3c57ab888
commit 90b2f096c3
2 changed files with 3 additions and 4 deletions

View File

@@ -71,9 +71,9 @@ pub(crate) async fn run_create(
bail!("run {run_id} already exists at {}", run_path.display());
}
let orchestrator = InftyOrchestrator::with_runs_root(auth, runs_root).with_progress(
Arc::new(TerminalProgressReporter::with_color(color_enabled)),
);
let orchestrator = InftyOrchestrator::with_runs_root(auth, runs_root).with_progress(Arc::new(
TerminalProgressReporter::with_color(color_enabled),
));
let verifiers: Vec<RoleConfig> = DEFAULT_VERIFIER_ROLES
.iter()
.map(|role| RoleConfig::new(role.to_string(), config.clone()))

View File

@@ -3,7 +3,6 @@ pub(crate) const DIRECTOR_PROMPT: &str = include_str!("director.md");
pub(crate) const SOLVER_PROMPT: &str = include_str!("solver.md");
pub(crate) const VERIFIER_PROMPT: &str = include_str!("verifier.md");
pub fn ensure_instructions(role: &str, config: &mut Config) {
if config.base_instructions.is_none()
&& let Some(text) = default_instructions_for_role(role)