Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ client = OpenAI(
|
|
| 13 |
|
| 14 |
# Create supported model
|
| 15 |
model_links = {
|
| 16 |
-
"
|
| 17 |
}
|
| 18 |
|
| 19 |
# Pull info about the model to display
|
|
@@ -60,7 +60,7 @@ Basically, it's like having a personal science tutor right in your pocket.
|
|
| 60 |
st.sidebar.markdown("By Gokulnath ♔")
|
| 61 |
|
| 62 |
# If model selection was needed (now removed)
|
| 63 |
-
selected_model = "
|
| 64 |
|
| 65 |
if "prev_option" not in st.session_state:
|
| 66 |
st.session_state.prev_option = selected_model
|
|
|
|
| 13 |
|
| 14 |
# Create supported model
|
| 15 |
model_links = {
|
| 16 |
+
"Zephyr-7B": "HuggingFaceH4/zephyr-7b-beta"
|
| 17 |
}
|
| 18 |
|
| 19 |
# Pull info about the model to display
|
|
|
|
| 60 |
st.sidebar.markdown("By Gokulnath ♔")
|
| 61 |
|
| 62 |
# If model selection was needed (now removed)
|
| 63 |
+
selected_model = "Zephyr-7B" # Only one model remains
|
| 64 |
|
| 65 |
if "prev_option" not in st.session_state:
|
| 66 |
st.session_state.prev_option = selected_model
|