dineth554 commited on
Commit
e35b74a
·
verified ·
1 Parent(s): 37ca075

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -148,7 +148,7 @@ model = st.sidebar.selectbox(
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,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)