Spaces:
Running
Running
File size: 1,318 Bytes
bf12aca |
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 |
import streamlit as st
class Layout:
def show_header(self, types_files):
"""
Displays the header of the app
"""
st.markdown(
f"""
<h1 style='text-align: center;'> Ask Robby about your {types_files} files ! 😁</h1>
""",
unsafe_allow_html=True,
)
def show_api_key_missing(self):
"""
Displays a message if the user has not entered an API key
"""
st.markdown(
"""
<div style='text-align: center;'>
<h4>Enter your <a href="https://platform.openai.com/account/api-keys" target="_blank">OpenAI API key</a> to start chatting</h4>
</div>
""",
unsafe_allow_html=True,
)
def prompt_form(self):
"""
Displays the prompt form
"""
with st.form(key="my_form", clear_on_submit=True):
user_input = st.text_area(
"Query:",
placeholder="Ask me anything about the document...",
key="input",
label_visibility="collapsed",
)
submit_button = st.form_submit_button(label="Send")
is_ready = submit_button and user_input
return is_ready, user_input
|