wop commited on
Commit
9463770
1 Parent(s): 6837b17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ headers2 = {"Authorization": "Bearer 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"}
9
  def query(q):
10
  payload2 = "whats the context of the question " + q + " :"
11
  response = requests.post(API_URL, headers=headers, json=payload2)
12
- return response.json()#['answer']
13
  def query2(q, c):
14
  payload = {"question": q, "context": c}
15
  response = requests.post(API_URL2, headers=headers2, json=payload)
 
9
  def query(q):
10
  payload2 = "whats the context of the question " + q + " :"
11
  response = requests.post(API_URL, headers=headers, json=payload2)
12
+ return response #.json() #['answer']
13
  def query2(q, c):
14
  payload = {"question": q, "context": c}
15
  response = requests.post(API_URL2, headers=headers2, json=payload)