Spaces:
Runtime error
Runtime error
update examples
Browse files
app.py
CHANGED
@@ -55,12 +55,14 @@ def find_orgs(sentence, choice):
|
|
55 |
return message
|
56 |
|
57 |
|
58 |
-
|
59 |
My latest exclusive for The Hill : Conservative frustration over Republican efforts to force a House vote on reauthorizing the Export - Import Bank boiled over Wednesday during a contentious GOP meeting.
|
60 |
-
|
|
|
|
|
61 |
"""
|
62 |
radio_btn = gr.Radio(choices=['GPT', 'iSemantics'], value='iSemantics', label='Available models', show_label=True)
|
63 |
textbox = gr.Textbox(label="Enter your text", placeholder="", lines=4)
|
64 |
|
65 |
-
iface = gr.Interface(fn=find_orgs, inputs=[textbox, radio_btn], outputs="text", examples=[[
|
66 |
iface.launch(share=True)
|
|
|
55 |
return message
|
56 |
|
57 |
|
58 |
+
example_1 = """\
|
59 |
My latest exclusive for The Hill : Conservative frustration over Republican efforts to force a House vote on reauthorizing the Export - Import Bank boiled over Wednesday during a contentious GOP meeting.
|
60 |
+
"""
|
61 |
+
example_2 = """\
|
62 |
+
Markets open in 4 hrs 3 mins Asia drops as commodities languish, loonie dips on Canada vote Reuters – 15 minutes ago A man holding an umbrella walks in front of an electronic stock quotation board outside a brokerage in … By Shinichi Saoshiro TOKYO ( Reuters ) - Asian equities fell across the board on Tuesday after commodity prices languished in the wake of China growth woes and dampened risk sentiment, while the euro hovered near a 10 - day low ahead of a European Central Bank meeting that could open the door for more monetary easing.
|
63 |
"""
|
64 |
radio_btn = gr.Radio(choices=['GPT', 'iSemantics'], value='iSemantics', label='Available models', show_label=True)
|
65 |
textbox = gr.Textbox(label="Enter your text", placeholder="", lines=4)
|
66 |
|
67 |
+
iface = gr.Interface(fn=find_orgs, inputs=[textbox, radio_btn], outputs="text", examples=[[example_1, example_2]])
|
68 |
iface.launch(share=True)
|