Spaces:
Runtime error
Runtime error
Add example, and increase the input box size
Browse files
app.py
CHANGED
@@ -33,8 +33,10 @@ def find_orgs(sentence):
|
|
33 |
return get_completion(prompt)
|
34 |
|
35 |
example = """
|
|
|
|
|
36 |
|
|
|
37 |
|
38 |
-
""
|
39 |
-
iface = gr.Interface(fn=find_orgs, inputs="text", outputs="text", examples=[[example]])
|
40 |
iface.launch(share=False)
|
|
|
33 |
return get_completion(prompt)
|
34 |
|
35 |
example = """
|
36 |
+
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.
|
37 |
+
"""
|
38 |
|
39 |
+
textbox = gr.Textbox(label="Enter your text", placeholder="", lines=4)
|
40 |
|
41 |
+
iface = gr.Interface(fn=find_orgs, inputs=textbox, outputs="text", examples=[[example]])
|
|
|
42 |
iface.launch(share=False)
|