Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import nand
|
|
| 4 |
import streamlit as st
|
| 5 |
para = nand.setupDB("en", 10)
|
| 6 |
print("Ready to receive from chat client")
|
| 7 |
-
query = st.
|
| 8 |
if query:
|
| 9 |
response = nand.process_query(query, para)
|
| 10 |
st.text(response)
|
|
|
|
| 4 |
import streamlit as st
|
| 5 |
para = nand.setupDB("en", 10)
|
| 6 |
print("Ready to receive from chat client")
|
| 7 |
+
query = st.text_area("Enter a query about ECO:")
|
| 8 |
if query:
|
| 9 |
response = nand.process_query(query, para)
|
| 10 |
st.text(response)
|