Skip to content

Commit e80b452

Browse files
Alex HolmbergAlex Holmberg
authored andcommitted
1 parent 024a22b commit e80b452

4 files changed

Lines changed: 25 additions & 22 deletions

File tree

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

slate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "https://randomlabs.ai/config.json",
3+
"permission": {
4+
"*": "allow",
5+
"bash": "ask",
6+
"edit": "ask"
7+
}
8+
}

src/agent/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,9 +694,7 @@ pub async fn run_interactive(
694694
// Inherit generation mode for short follow-up messages ("sure", "yes", "go ahead",
695695
// etc.) so the write/shell tool set is not lost between turns.
696696
let is_generation = prompts::is_generation_query(&current_input)
697-
|| (!is_planning
698-
&& session.last_was_generation
699-
&& current_input.trim().len() < 60);
697+
|| (!is_planning && session.last_was_generation && current_input.trim().len() < 60);
700698

701699
// Note: using raw_chat_history directly which preserves Reasoning blocks
702700
// This is needed for extended thinking to work with multi-turn conversations

src/wizard/orchestrator.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -524,10 +524,7 @@ pub async fn run_wizard(
524524
};
525525

526526
// Debug: Show trigger request
527-
log::debug!(
528-
"Trigger request: configId={}",
529-
trigger_request.config_id
530-
);
527+
log::debug!("Trigger request: configId={}", trigger_request.config_id);
531528

532529
match client.trigger_deployment(&trigger_request).await {
533530
Ok(response) => {

0 commit comments

Comments
 (0)