Abhaykoul commited on
Commit
7b4cd39
·
verified ·
1 Parent(s): 9bd09c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -373,7 +373,7 @@ async def adv_web_search(
373
 
374
  # 4. Get the FastAI's response using FastAI service
375
  try:
376
- response = await asyncio.to_thread(fastai(model=model, system_prompt=system_prompt).get_response, ai_prompt)
377
  except Exception as e:
378
  raise HTTPException(status_code=500, detail=f"Error during FastAI request: {e}")
379
 
 
373
 
374
  # 4. Get the FastAI's response using FastAI service
375
  try:
376
+ response = await asyncio.to_thread(fastai(model=model, system=system_prompt).get_response, ai_prompt)
377
  except Exception as e:
378
  raise HTTPException(status_code=500, detail=f"Error during FastAI request: {e}")
379