Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import streamlit as st; from transformers import pipeline
|
|
3 |
ES_URL = os.environ.get("ES_URL")
|
4 |
|
5 |
question = 'What is the capital of Netherlands?'
|
6 |
-
query_text = 'Query used for
|
7 |
written_question = st.text_input(query_text, question)
|
8 |
if written_question:
|
9 |
question = written_question
|
|
|
3 |
ES_URL = os.environ.get("ES_URL")
|
4 |
|
5 |
question = 'What is the capital of Netherlands?'
|
6 |
+
query_text = 'Query used for search or question answering (you can also edit, and experiment with the anwers)'
|
7 |
written_question = st.text_input(query_text, question)
|
8 |
if written_question:
|
9 |
question = written_question
|