-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.py
More file actions
54 lines (42 loc) · 1.78 KB
/
Copy pathapp.py
File metadata and controls
54 lines (42 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from json import JSONDecodeError
import logging
import streamlit as st
from utils.haystack import query, start_haystack
from utils.ui import reset_results, set_initial_state, sidebar
set_initial_state()
sidebar()
st.write("# 🦋 What have they been posting about lately on Bluesky?")
if st.session_state.get("OPENAI_API_KEY"):
pipeline = start_haystack(st.session_state.get("OPENAI_API_KEY"))
st.session_state["api_key_configured"] = True
search_bar, button = st.columns(2)
# Search bar
with search_bar:
username = st.text_input("Please provide a Bluesky handle", value=st.session_state.username, on_change=reset_results)
with button:
st.write("")
st.write("")
run_pressed = st.button("Search posts")
else:
st.write("Please provide your OpenAI Key to start using the application")
st.write("If you are using a smaller screen, open the sidebar from the top left to provide your OpenAI Key 🙌")
if st.session_state.get("api_key_configured"):
run_query = (
run_pressed or username != st.session_state.username
)
# Get results for query
if run_query and username:
reset_results()
st.session_state.username = username
with st.spinner("🔎"):
try:
st.session_state.result = query(username, pipeline)
except JSONDecodeError as je:
st.error(
"👓 An error occurred reading the results. Is the document store working?"
)
except Exception as e:
logging.exception(e)
st.error("🐞 An error occurred during the request.")
if st.session_state.result:
st.write(st.session_state.result)