Spaces:
Sleeping
Sleeping
Commit
·
5fd5c1f
1
Parent(s):
6ec5095
added mixtral-8x7B
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ pinecone.init(
|
|
18 |
pinecone_index = pinecone.Index('ikigai-chat')
|
19 |
text_vectorizer = SentenceTransformer('all-distilroberta-v1')
|
20 |
chat_bots = {
|
21 |
-
"
|
22 |
"Mistral 7B v0.1" : "mistralai/Mistral-7B-Instruct-v0.1",
|
23 |
"Zephyr 7B-beta": "HuggingFaceH4/zephyr-7b-beta",
|
24 |
"Zephyr 7B-alpha" : "HuggingFaceH4/zephyr-7b-alpha",
|
@@ -108,7 +108,7 @@ if "rag_enabled" not in st.session_state :
|
|
108 |
st.session_state.rag_enabled = True
|
109 |
|
110 |
if "chat_bot" not in st.session_state :
|
111 |
-
st.session_state.chat_bot = "
|
112 |
|
113 |
with st.sidebar:
|
114 |
st.markdown("# Retrieval Settings")
|
|
|
18 |
pinecone_index = pinecone.Index('ikigai-chat')
|
19 |
text_vectorizer = SentenceTransformer('all-distilroberta-v1')
|
20 |
chat_bots = {
|
21 |
+
"Mixtral 8x7B v0.1" :"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
22 |
"Mistral 7B v0.1" : "mistralai/Mistral-7B-Instruct-v0.1",
|
23 |
"Zephyr 7B-beta": "HuggingFaceH4/zephyr-7b-beta",
|
24 |
"Zephyr 7B-alpha" : "HuggingFaceH4/zephyr-7b-alpha",
|
|
|
108 |
st.session_state.rag_enabled = True
|
109 |
|
110 |
if "chat_bot" not in st.session_state :
|
111 |
+
st.session_state.chat_bot = "Mixtral 8x7B v0.1"
|
112 |
|
113 |
with st.sidebar:
|
114 |
st.markdown("# Retrieval Settings")
|