besijar commited on
Commit
fe93e28
·
1 Parent(s): 27c40e6

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -0
app.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+ import gradio as gr
3
+
4
+ API_URL = "https://api-inference.huggingface.co/models/allenai/bidaf-elmo"
5
+ headers = {"Authorization": HF_TOKEN}
6
+
7
+ def query(question, context):
8
+ data = {
9
+ "inputs": {
10
+ "question": question,
11
+ "context": context
12
+ },
13
+ }
14
+ response = requests.post(API_URL, headers=headers, json=data)
15
+ return response.json()["outputs"]["answer"]
16
+
17
+ # Example question and context
18
+ passage = "The quick brown fox jumped over the lazy dog."
19
+ question = "Who jumps over the lazy dog?"
20
+
21
+ iface = gr.Interface(query,
22
+ title="Allen NLP Question Answering",
23
+ inputs=["text", gr.inputs.Textbox(lines=15)],
24
+ outputs=["text"],
25
+ examples=[["{}".format(passage), "{}".format(question)]])
26
+ iface.launch()