Fix typo
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ with open( "./style.css" ) as css:
|
|
19 |
|
20 |
# Info message
|
21 |
st.info(
|
22 |
-
body="This demo is only a preview
|
23 |
icon="ℹ️"
|
24 |
)
|
25 |
|
@@ -95,7 +95,7 @@ with Chat_Col:
|
|
95 |
# Preparing client
|
96 |
client = OpenAI(
|
97 |
base_url="https://api.unify.ai/v0/",
|
98 |
-
api_key=st.secrets
|
99 |
)
|
100 |
|
101 |
# Processing prompt box input
|
|
|
19 |
|
20 |
# Info message
|
21 |
st.info(
|
22 |
+
body="This demo is only a preview. Check out our [Chat UI](https://unify.ai/) for the full experience, including more endpoints, and extra customization!",
|
23 |
icon="ℹ️"
|
24 |
)
|
25 |
|
|
|
95 |
# Preparing client
|
96 |
client = OpenAI(
|
97 |
base_url="https://api.unify.ai/v0/",
|
98 |
+
api_key=st.secrets["UNIFY_API"]
|
99 |
)
|
100 |
|
101 |
# Processing prompt box input
|