Abhaykoul commited on
Commit
596c17a
·
verified ·
1 Parent(s): 7b4cd39

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -340,7 +340,7 @@ def web_search_and_extract_threading(
340
  async def adv_web_search(
341
  q: str,
342
  model: str = "llama3-8b",
343
- max_results: int = 5,
344
  timelimit: Optional[str] = None,
345
  safesearch: str = "moderate",
346
  region: str = "wt-wt",
@@ -369,11 +369,11 @@ async def adv_web_search(
369
  extracted_text += f"## Content from: {result['link']}\n\n{result['text']}\n\n"
370
 
371
  # 3. Construct the prompt for FastAI
372
- ai_prompt = f"Query by user: {q} . Answer the query asked by user in detail. SEarch Result: {extracted_text}"
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
 
 
340
  async def adv_web_search(
341
  q: str,
342
  model: str = "llama3-8b",
343
+ max_results: int = 3,
344
  timelimit: Optional[str] = None,
345
  safesearch: str = "moderate",
346
  region: str = "wt-wt",
 
369
  extracted_text += f"## Content from: {result['link']}\n\n{result['text']}\n\n"
370
 
371
  # 3. Construct the prompt for FastAI
372
+ ai_prompt = f"Query by user: {q}. Answer the query asked by the user in detail. Search Result: {extracted_text}"
373
 
374
  # 4. Get the FastAI's response using FastAI service
375
  try:
376
+ response = await asyncio.to_thread(fastai, ai_prompt, model=model, system=system_prompt)
377
  except Exception as e:
378
  raise HTTPException(status_code=500, detail=f"Error during FastAI request: {e}")
379