Benjamin Consolvo
commited on
Commit
·
2ce7cb5
1
Parent(s):
97ccf9a
markdown
Browse files
app.py
CHANGED
|
@@ -32,6 +32,15 @@ with st.sidebar:
|
|
| 32 |
st.write(f"You selected: {modelname}")
|
| 33 |
st.button("Start New Chat", on_click=clear_chat)
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
try:
|
| 36 |
if "messages" not in st.session_state:
|
| 37 |
st.session_state.messages = []
|
|
|
|
| 32 |
st.write(f"You selected: {modelname}")
|
| 33 |
st.button("Start New Chat", on_click=clear_chat)
|
| 34 |
|
| 35 |
+
st.markdown("---") # Add a horizontal line for separation
|
| 36 |
+
st.markdown(
|
| 37 |
+
"""
|
| 38 |
+
**Check the latest models hosted on [Denvr Dataworks](https://www.denvrdata.com/intel), and get your own OpenAI-compatible API key.**
|
| 39 |
+
|
| 40 |
+
**Come and chat with other AI developers on [Intel’s DevHub Discord server](https://discord.gg/kfJ3NKEw5t).**
|
| 41 |
+
"""
|
| 42 |
+
)
|
| 43 |
+
|
| 44 |
try:
|
| 45 |
if "messages" not in st.session_state:
|
| 46 |
st.session_state.messages = []
|