fix: add prompt logging for OpenAI API call in conflict resolution

This commit is contained in:
robertsLando 2025-08-28 14:31:53 +02:00
parent 96504367fc
commit 3c378db428
No known key found for this signature in database

View File

@ -82,6 +82,8 @@ Return ONLY the complete corrected file content, no explanations."""
print(f"Calling OpenAI API to resolve {original_file}...", file=sys.stderr)
print(f"Prompt for OpenAI API:\n{prompt}")
resolved_content = call_openai_api(prompt, api_key)
if resolved_content: