Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,18 @@ with st.sidebar:
|
|
20 |
openai_api_key = st.text_input("Enter your OpenAI API Key", type="password")
|
21 |
"[Get an OpenAI API key](https://platform.openai.com/account/api-keys)"
|
22 |
"[View the source code](https://github.com/streamlit/llm-examples/blob/main/Chatbot.py)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
# Check if an API key is provided
|
25 |
if not openai_api_key:
|
|
|
20 |
openai_api_key = st.text_input("Enter your OpenAI API Key", type="password")
|
21 |
"[Get an OpenAI API key](https://platform.openai.com/account/api-keys)"
|
22 |
"[View the source code](https://github.com/streamlit/llm-examples/blob/main/Chatbot.py)"
|
23 |
+
st.divider()
|
24 |
+
st.markdown(
|
25 |
+
"""
|
26 |
+
---
|
27 |
+
Follow me on:
|
28 |
+
|
29 |
+
𝕏 → [@tonykipkemboi](https://twitter.com/tonykipkemboi)
|
30 |
+
|
31 |
+
LinkedIn → [Tony Kipkemboi](https://www.linkedin.com/in/tonykipkemboi)
|
32 |
+
|
33 |
+
"""
|
34 |
+
)
|
35 |
|
36 |
# Check if an API key is provided
|
37 |
if not openai_api_key:
|