cdupland commited on
Commit
e639502
·
verified ·
1 Parent(s): 3d60d4a

Remove API Key printing

Browse files
Files changed (1) hide show
  1. rag_module.py +0 -1
rag_module.py CHANGED
@@ -46,7 +46,6 @@ class RagModule():
46
  def __init__(self):
47
  self.mistral_api_key = api_key
48
  self.model_name_embedding = "mistral-embed"
49
- print(f"API KEY:, {self.mistral_api_key}")
50
  self.embedding_model = MistralAIEmbeddings(model=self.model_name_embedding, mistral_api_key=self.mistral_api_key)
51
 
52
  self.chunk_size = 1000
 
46
  def __init__(self):
47
  self.mistral_api_key = api_key
48
  self.model_name_embedding = "mistral-embed"
 
49
  self.embedding_model = MistralAIEmbeddings(model=self.model_name_embedding, mistral_api_key=self.mistral_api_key)
50
 
51
  self.chunk_size = 1000