Rulga commited on
Commit
65804fb
·
1 Parent(s): a3b7b74

feat: update embedding model and add empty directories for chat history and vector store

Browse files
Files changed (3) hide show
  1. app.py +2 -1
  2. chat_history/.gitkeep +0 -0
  3. vector_store/.gitkeep +0 -0
app.py CHANGED
@@ -101,7 +101,8 @@ def init_models():
101
  api_key=GROQ_API_KEY
102
  )
103
  embeddings = HuggingFaceEmbeddings(
104
- model_name="intfloat/multilingual-e5-large-instruct"
 
105
  )
106
  return llm, embeddings
107
 
 
101
  api_key=GROQ_API_KEY
102
  )
103
  embeddings = HuggingFaceEmbeddings(
104
+ #model_name="intfloat/multilingual-e5-large-instruct"
105
+ model_name="sentence-transformers/all-MiniLM-L6-v2"
106
  )
107
  return llm, embeddings
108
 
chat_history/.gitkeep ADDED
File without changes
vector_store/.gitkeep ADDED
File without changes