chore: remove debug logging and fix closure bug in test hooks
This commit is contained in:
@@ -51,9 +51,9 @@ def main() -> None:
|
||||
if 'You are assigned to Ticket' in prompt:
|
||||
# Extract ticket ID
|
||||
import re
|
||||
match = re.search(r'Ticket (ticket-[A-B]-1)', prompt)
|
||||
match = re.search(r'Ticket (ticket-[A-Ba-b]-1)', prompt, re.IGNORECASE)
|
||||
tid = match.group(1) if match else "unknown"
|
||||
|
||||
|
||||
print(json.dumps({
|
||||
"type": "message",
|
||||
"role": "assistant",
|
||||
|
||||
Reference in New Issue
Block a user