Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -148,7 +148,7 @@ model = st.sidebar.selectbox(
|
|
148 |
"Model",
|
149 |
[
|
150 |
'Mistral-7B-Instruct-v0.3-Q6_K.gguf',
|
151 |
-
|
152 |
'Meta-Llama-3-8B-Instruct-Q6_K.gguf'
|
153 |
]
|
154 |
)
|
@@ -186,7 +186,4 @@ if st.button("Send"):
|
|
186 |
|
187 |
# Display chat history
|
188 |
for user_msg, bot_msg in st.session_state.history:
|
189 |
-
st.text_area("Chat", value=f"You: {user_msg}\nBot: {bot_msg}", height=300)
|
190 |
-
|
191 |
-
if __name__ == "__main__":
|
192 |
-
st.run()
|
|
|
148 |
"Model",
|
149 |
[
|
150 |
'Mistral-7B-Instruct-v0.3-Q6_K.gguf',
|
151 |
+
'mixtral-8x7b-instruct-v0.1.Q5_K_M.gguf',
|
152 |
'Meta-Llama-3-8B-Instruct-Q6_K.gguf'
|
153 |
]
|
154 |
)
|
|
|
186 |
|
187 |
# Display chat history
|
188 |
for user_msg, bot_msg in st.session_state.history:
|
189 |
+
st.text_area("Chat", value=f"You: {user_msg}\nBot: {bot_msg}", height=300)
|
|
|
|
|
|