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