LaurentTRIPIED cdupland commited on
Commit
099286d
1 Parent(s): b8e8b97

Change Mistral API KEY (#1)

Browse files

- Change Mistral API KEY (210c9215bd6860488e747cdd57e6785f01c0e6cc)


Co-authored-by: Dupland <[email protected]>

Files changed (1) hide show
  1. rag_module.py +1 -1
rag_module.py CHANGED
@@ -27,7 +27,7 @@ from collections import defaultdict
27
 
28
  class RagModule():
29
  def __init__(self):
30
- self.mistral_api_key = "Yb2kAF0DR4Mva5AEmoYFV3kYRAKdXB7i"
31
  self.model_name_embedding = "mistral-embed"
32
  self.embedding_model = MistralAIEmbeddings(model=self.model_name_embedding, mistral_api_key=self.mistral_api_key)
33
  self.chunk_size = 1000
 
27
 
28
  class RagModule():
29
  def __init__(self):
30
+ self.mistral_api_key = "jdkSsdQeimr6g3x3H4slLYhTKBEH5pRC"
31
  self.model_name_embedding = "mistral-embed"
32
  self.embedding_model = MistralAIEmbeddings(model=self.model_name_embedding, mistral_api_key=self.mistral_api_key)
33
  self.chunk_size = 1000