wop commited on
Commit
917c55e
1 Parent(s): 6e1ab1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,11 +9,11 @@ headers2 = {"Authorization": "Bearer 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"}
9
  def query(payload):
10
  payload2 = "whats the context of the question " + paylaod + " :"
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)
16
- return response.json()["answer"]
17
 
18
  iface = gr.Interface(
19
  fn=query2,
 
9
  def query(payload):
10
  payload2 = "whats the context of the question " + paylaod + " :"
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)
16
+ return response.json()
17
 
18
  iface = gr.Interface(
19
  fn=query2,