pvanand commited on
Commit
71c73b5
·
verified ·
1 Parent(s): 0e97127

Update routers/llm_chat.py

Browse files
Files changed (1) hide show
  1. 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.send_prompt(
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,