Spaces:
Sleeping
Sleeping
Update routers/llm_chat.py
Browse files- routers/llm_chat.py +1 -1
routers/llm_chat.py
CHANGED
@@ -31,7 +31,7 @@ async def llm_chat(
|
|
31 |
):
|
32 |
try:
|
33 |
# Use the AI client to send the prompt
|
34 |
-
response = ai_client.
|
35 |
prompt=request.prompt,
|
36 |
system_message=request.system_message,
|
37 |
model_id=request.model_id,
|
|
|
31 |
):
|
32 |
try:
|
33 |
# Use the AI client to send the prompt
|
34 |
+
response = ai_client.chat(
|
35 |
prompt=request.prompt,
|
36 |
system_message=request.system_message,
|
37 |
model_id=request.model_id,
|