James MacQuillan commited on
Commit
07c10bd
·
1 Parent(s): 2222caa
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -424,7 +424,7 @@ def detect_data_request(user_input, history):
424
  # If no data endpoint exists, switch to scraping a valid webpage
425
  response = client.chat_completion(
426
  model="Qwen/Qwen2.5-72B-Instruct",
427
- messages=[{"role": "user", "content": f"You are an assistant that detects whether the user is asking for data or not. Here is their request: {youreq}. You respond 'yes' if they are and 'no' if not. If yes, then in the second line provide the exact URL, not an API, a valid webpage which is definitely there and easy to scrape. If no, only respond with 'no' and nothing else."}],
428
  max_tokens=1500,
429
  stream=False
430
  )
 
424
  # If no data endpoint exists, switch to scraping a valid webpage
425
  response = client.chat_completion(
426
  model="Qwen/Qwen2.5-72B-Instruct",
427
+ messages=[{"role": "user", "content": f"You are an assistant that detects whether the user is asking for data or not. Here is their request: {youreq}. You respond 'yes' if they are and 'no' if not. If yes, then in the second line provide the exact URL, not an API, a valid webpage which is definitely there and easy to scrape. If no, only respond with 'no' and nothing else. if they ask for anything current, respond yes and give a url as the training database that bots like you run on may have out of date data"}],
428
  max_tokens=1500,
429
  stream=False
430
  )