-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.py
More file actions
35 lines (28 loc) · 1.04 KB
/
home.py
File metadata and controls
35 lines (28 loc) · 1.04 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
import streamlit as st
st.set_page_config(
page_title="Chatbot",
page_icon="graphics/Icon-BIDV.png"
)
st.title('Welcome!!!')
st.header('Notice')
st.markdown("""
The chatbot only works with question related to financial statements. Other questions will either not be answered, or the chatbot will hallucinate
Sample questions:
- What is the revenue of the company VIC?
- What is the CASA of banking industry from 2016 to 2023?
- Top 5 bank with the highest Bad Debt Ratio in Q3 2024?
""")
st.header('Chat')
st.markdown("""
- Begin by typing your question or topic in the chatbox below.
- Our chatbot can help answer your queries, provide guidance in financial statements.
- Simply type a message and click **Send**. The chatbot will respond with helpful insights and suggestions.
""")
st.header('Reasoning')
st.markdown("""
- Debugging and reasoning are important in the development of a chatbot.
""")
st.header('Text2SQL')
st.markdown("""
Directly interact with the text2sql model. Only use for debugging purposes.
""")