stmnk commited on
Commit
9662705
1 Parent(s): c26f53d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 keyword search (you can also edit, and experiment with the responses)'
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