Spaces:
Sleeping
Sleeping
Update code_assistant_runnable.py
Browse files
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 = "/
|
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 |
|