Update app.py
Browse files
app.py
CHANGED
@@ -283,7 +283,7 @@ st.markdown("""
|
|
283 |
|
284 |
st.markdown("---")
|
285 |
|
286 |
-
url_text = st.text_input("Please Enter a url here")
|
287 |
|
288 |
st.markdown(
|
289 |
"<h3 style='text-align: center; color: red;'>OR</h3>",
|
@@ -294,7 +294,7 @@ upload_doc = st.file_uploader(
|
|
294 |
"Upload a .txt, .pdf, .docx file"
|
295 |
)
|
296 |
|
297 |
-
search_query = st.text_input("Please Enter your search query here")
|
298 |
|
299 |
if validators.url(url_text):
|
300 |
#if input is URL
|
|
|
283 |
|
284 |
st.markdown("---")
|
285 |
|
286 |
+
url_text = st.text_input("Please Enter a url here",value="https://www.rba.gov.au/media-releases/2022/mr-22-12.html")
|
287 |
|
288 |
st.markdown(
|
289 |
"<h3 style='text-align: center; color: red;'>OR</h3>",
|
|
|
294 |
"Upload a .txt, .pdf, .docx file"
|
295 |
)
|
296 |
|
297 |
+
search_query = st.text_input("Please Enter your search query here",value="What are the expectations for inflation in Australia?")
|
298 |
|
299 |
if validators.url(url_text):
|
300 |
#if input is URL
|