Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -56,9 +56,6 @@ def launch_bot():
|
|
56 |
vq = st.session_state.vq
|
57 |
st.set_page_config(page_title=cfg.title, layout="wide")
|
58 |
|
59 |
-
print(cfg)
|
60 |
-
|
61 |
-
|
62 |
# left side content
|
63 |
with st.sidebar:
|
64 |
image = Image.open('Vectara-logo.png')
|
@@ -91,6 +88,7 @@ def launch_bot():
|
|
91 |
|
92 |
# User-provided prompt
|
93 |
if prompt := st.chat_input():
|
|
|
94 |
submit_question(prompt)
|
95 |
|
96 |
|
|
|
56 |
vq = st.session_state.vq
|
57 |
st.set_page_config(page_title=cfg.title, layout="wide")
|
58 |
|
|
|
|
|
|
|
59 |
# left side content
|
60 |
with st.sidebar:
|
61 |
image = Image.open('Vectara-logo.png')
|
|
|
88 |
|
89 |
# User-provided prompt
|
90 |
if prompt := st.chat_input():
|
91 |
+
print(f"chat msg = {prompt}")
|
92 |
submit_question(prompt)
|
93 |
|
94 |
|