-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy path🏡_Home.py
More file actions
21 lines (12 loc) · 735 Bytes
/
🏡_Home.py
File metadata and controls
21 lines (12 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import streamlit as st
st.set_page_config(page_title="FinSight", page_icon=":money_with_wings:", layout="wide")
st.title(":money_with_wings: FinSight \n\n **Financial Insights at Your Fingertip**")
st.balloons()
st.success("""
If you'd like to learn more about the technical details of FinSight, check out the LlamaIndex blogpost below where I do a deep dive into the project:
[How I built the Streamlit LLM Hackathon winning app — FinSight using LlamaIndex.](https://blog.llamaindex.ai/how-i-built-the-streamlit-llm-hackathon-winning-app-finsight-using-llamaindex-9dcf6c46d7a0)
""")
with open("docs/news.md", "r") as f:
st.success(f.read())
with open("docs/main.md", "r") as f:
st.info(f.read())