Fixed broken test
This commit is contained in:
Fahad
2025-08-08 10:04:40 +05:00
parent 2bbb858d93
commit 2fa2d5a408
2 changed files with 11 additions and 3 deletions

View File

@@ -537,11 +537,13 @@ of the evidence, even when it strongly points in one direction.""",
provider = self.get_model_provider(model_name)
# Prepare the prompt with any relevant files
# Use continuation_id=None for blinded consensus - each model should only see
# original prompt + files, not conversation history or other model responses
prompt = self.initial_prompt
if request.relevant_files:
file_content, _ = self._prepare_file_content_for_prompt(
request.relevant_files,
request.continuation_id,
None, # Use None instead of request.continuation_id for blinded consensus
"Context files",
)
if file_content: