Remove instruction hack for /review (#4896)

We use to put the review prompt in the first user message as well to
bypass statsig overrides, but now that's been resolved and instructions
are being respected, so we're duplicating the review instructions.
This commit is contained in:
dedrisian-oai
2025-10-07 12:47:00 -07:00
committed by GitHub
parent a0d56541cf
commit b016a3e7d8
2 changed files with 8 additions and 3 deletions

View File

@@ -1586,7 +1586,7 @@ async fn spawn_review_thread(
// Seed the child task with the review prompt as the initial user message.
let input: Vec<InputItem> = vec![InputItem::Text {
text: format!("{base_instructions}\n\n---\n\nNow, here's your task: {review_prompt}"),
text: review_prompt,
}];
let tc = Arc::new(review_turn_context);