This commit is contained in:
Fahad
2025-06-12 12:55:49 +04:00
parent 7462599ddb
commit 8b8d966d33

View File

@@ -128,7 +128,9 @@ def multiply(x, y):
] ]
# Check for successful OpenAI responses # Check for successful OpenAI responses
openai_response_logs = [line for line in logs.split("\n") if "openai provider" in line and "Using model:" in line] openai_response_logs = [
line for line in logs.split("\n") if "openai provider" in line and "Using model:" in line
]
# Check that we have both chat and codereview tool calls to OpenAI # Check that we have both chat and codereview tool calls to OpenAI
chat_openai_logs = [line for line in logs.split("\n") if "Sending request to openai API for chat" in line] chat_openai_logs = [line for line in logs.split("\n") if "Sending request to openai API for chat" in line]