Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,10 +4,10 @@ from llama_index.llms import OpenAI
|
|
4 |
import openai
|
5 |
from llama_index import SimpleDirectoryReader
|
6 |
|
7 |
-
st.set_page_config(page_title="
|
8 |
openai.api_key = "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"
|
9 |
-
st.title("
|
10 |
-
st.info("Check out more info on
|
11 |
|
12 |
if "messages" not in st.session_state.keys(): # Initialize the chat messages history
|
13 |
st.session_state.messages = [
|
|
|
4 |
import openai
|
5 |
from llama_index import SimpleDirectoryReader
|
6 |
|
7 |
+
st.set_page_config(page_title="HUD Audit Guide", page_icon="π", layout="centered", initial_sidebar_state="auto", menu_items=None)
|
8 |
openai.api_key = "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"
|
9 |
+
st.title("Ask the HUD Audit Guide π¬π€")
|
10 |
+
st.info("Check out more info on the complete HUD Audit Guide at the official [website](https://www.hudoig.gov/library/single-audit-guidance/hud-consolidated-audit-guide)", icon="π")
|
11 |
|
12 |
if "messages" not in st.session_state.keys(): # Initialize the chat messages history
|
13 |
st.session_state.messages = [
|