From a3e9431240bf1224f29b4c22ae44f228569b961d Mon Sep 17 00:00:00 2001 From: akhisud3195 Date: Tue, 13 May 2025 12:07:37 +0530 Subject: [PATCH] Add copilot input log --- apps/copilot/streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/copilot/streaming.py b/apps/copilot/streaming.py index ee5fb550..24a71b5f 100644 --- a/apps/copilot/streaming.py +++ b/apps/copilot/streaming.py @@ -119,7 +119,7 @@ User: {last_message.content} updated_msgs = [{"role": "system", "content": sys_prompt}] + [ message.model_dump() for message in messages ] - + print(f"Input to copilot chat completions: {updated_msgs}") return completions_client.chat.completions.create( model=PROVIDER_COPILOT_MODEL, messages=updated_msgs,