Skip to content
This repository was archived by the owner on Dec 7, 2025. It is now read-only.

Commit 962a5df

Browse files
Fix v30
1 parent d5cd8a4 commit 962a5df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/chat/app/core/llm_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async def generate_reply(self, messages: List[Message], user_api_key: Optional[s
2929
response = await client.post(
3030
f"{self.settings.llm_api_url}/chat/completions",
3131
json=payload,
32-
# headers={"Authorization": f"Bearer {api_key}"}
32+
headers={"Authorization": f"Bearer {api_key}"}
3333
)
3434
response.raise_for_status()
3535
data = response.json()

0 commit comments

Comments
 (0)