github-actions
commited on
Commit
•
47b0c7d
1
Parent(s):
25b2b88
Sync updates from source repository
Browse files
app.py
CHANGED
@@ -3,6 +3,8 @@ from query import VectaraQuery
|
|
3 |
import os
|
4 |
|
5 |
import streamlit as st
|
|
|
|
|
6 |
from PIL import Image
|
7 |
|
8 |
max_examples = 4
|
@@ -21,18 +23,15 @@ def launch_bot():
|
|
21 |
response = vq.submit_query_streaming(question)
|
22 |
return response
|
23 |
|
24 |
-
def show_example_questions():
|
25 |
-
if len(st.session_state.example_messages) > 0 and st.session_state.first_turn:
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
st.session_state.ex_prompt = example
|
32 |
-
st.session_state.first_turn = False
|
33 |
-
return True
|
34 |
return False
|
35 |
-
|
36 |
if 'cfg' not in st.session_state:
|
37 |
corpus_ids = str(os.environ['corpus_ids']).split(',')
|
38 |
cfg = OmegaConf.create({
|
|
|
3 |
import os
|
4 |
|
5 |
import streamlit as st
|
6 |
+
from streamlit_pills import pills
|
7 |
+
|
8 |
from PIL import Image
|
9 |
|
10 |
max_examples = 4
|
|
|
23 |
response = vq.submit_query_streaming(question)
|
24 |
return response
|
25 |
|
26 |
+
def show_example_questions():
|
27 |
+
if len(st.session_state.example_messages) > 0 and st.session_state.first_turn:
|
28 |
+
selected_example = pills("Queries to Try:", st.session_state.example_messages, index=None)
|
29 |
+
if selected_example:
|
30 |
+
st.session_state.ex_prompt = selected_example
|
31 |
+
st.session_state.first_turn = False
|
32 |
+
return True
|
|
|
|
|
|
|
33 |
return False
|
34 |
+
|
35 |
if 'cfg' not in st.session_state:
|
36 |
corpus_ids = str(os.environ['corpus_ids']).split(',')
|
37 |
cfg = OmegaConf.create({
|