Skip to content

Commit 4edd689

Browse files
fix: Copilot provider not working on shortcut response (#724)
Closes: #723 We were not returnin the response appropriately
1 parent 95fd908 commit 4edd689

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/codegate/providers/copilot/pipeline.py

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ async def process_body(
126126
result, normalized_body.get("model", "gpt-4o-mini")
127127
)
128128
logger.info(f"Pipeline created shortcut response: {body}")
129+
return body, result.context
129130
except Exception as e:
130131
logger.error(f"Pipeline processing error: {e}")
131132
return body, None

0 commit comments

Comments
 (0)