File size: 272 Bytes
b7c38f0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import sys
sys.path.insert(0, '.')
import nand
import streamlit as st
para = nand.setupDB("en", 10)
print("Ready to receive from chat client")
query = st.text_input("Enter a query about ECO:")
if query:
    response = nand.process_query(query, para)
    st.text(response)