AbdulmalikAdeyemo commited on
Commit
5180968
·
verified ·
1 Parent(s): 5b17321

Update code_assistant_runnable.py

Browse files
Files changed (1) hide show
  1. code_assistant_runnable.py +1 -1
code_assistant_runnable.py CHANGED
@@ -43,7 +43,7 @@ llm = ChatOpenAI(temperature=0, model=expt_llm)
43
 
44
  # Load an existing (saved) embedding model from a pickle file
45
 
46
- model_path = "/Users/user/Projects/LLM_Projects/Hackathon/SACE/Model/embedding_model.pkl"
47
  with open(model_path, 'rb') as f:
48
  embedding_model = pickle.load(f)
49
 
 
43
 
44
  # Load an existing (saved) embedding model from a pickle file
45
 
46
+ model_path = "/Model/embedding_model.pkl"
47
  with open(model_path, 'rb') as f:
48
  embedding_model = pickle.load(f)
49