Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -47,7 +47,7 @@ def qa_result(context, question, file):
|
|
47 |
answered = result['answer']
|
48 |
text = remove_references(answered)
|
49 |
|
50 |
-
|
51 |
text = "Որպեսզի ես կարողանամ քեզ օգնել, ինձ պիտի տրամադրես համապատասխան տեքստն կամ ֆայլն ու հարցերը։"
|
52 |
|
53 |
else:
|
@@ -76,7 +76,7 @@ theme = gr.themes.Soft().set(
|
|
76 |
|
77 |
app = gr.Interface(
|
78 |
fn=qa_result,
|
79 |
-
btn=gr.UploadButton("📁"
|
80 |
# inputs=['textbox', 'text', 'file'],
|
81 |
inputs=['textbox', 'text', gr.inputs.File()],
|
82 |
outputs='textbox',
|
|
|
47 |
answered = result['answer']
|
48 |
text = remove_references(answered)
|
49 |
|
50 |
+
elif file is None and len(context) == 0 and len(question) == 0:
|
51 |
text = "Որպեսզի ես կարողանամ քեզ օգնել, ինձ պիտի տրամադրես համապատասխան տեքստն կամ ֆայլն ու հարցերը։"
|
52 |
|
53 |
else:
|
|
|
76 |
|
77 |
app = gr.Interface(
|
78 |
fn=qa_result,
|
79 |
+
btn=gr.UploadButton("📁"),
|
80 |
# inputs=['textbox', 'text', 'file'],
|
81 |
inputs=['textbox', 'text', gr.inputs.File()],
|
82 |
outputs='textbox',
|