Skip to content

Commit

Permalink
NEVERMIND I ADDED THE WRONG MODEL AGAIN
Browse files Browse the repository at this point in the history
its mistral-instruct v.02 not v.01
  • Loading branch information
alexpinel committed Dec 28, 2023
1 parent 6d7804a commit c01a443
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ python/
llama-2-7b-chat.Q4_K_M.gguf
node_modules/
mistral-7b-v0.1.Q4_K_M.gguf
mistral-7b-instruct-v0.1.Q4_K_M.gguf
mistral-7b-instruct-v0.2.Q4_K_M.gguf
src/mystuff/
src/.env
dist
Binary file modified llm/.DS_Store
Binary file not shown.
Binary file modified llm/scripts/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion llm/scripts/bigdot.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
script_dir = os.path.dirname(__file__)

# Construct the relative path
relative_model_path = "mistral-7b-instruct-v0.1.Q4_K_M.gguf"
relative_model_path = "mistral-7b-instruct-v0.2.Q4_K_M.gguf"
model_path = os.path.join(script_dir, relative_model_path)


Expand Down
2 changes: 1 addition & 1 deletion llm/scripts/docdot.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
script_dir = os.path.dirname(__file__)

# Construct the relative path
relative_model_path = "mistral-7b-instruct-v0.1.Q4_K_M.gguf"
relative_model_path = "mistral-7b-instruct-v0.2.Q4_K_M.gguf"
model_path = os.path.join(script_dir, relative_model_path)


Expand Down

0 comments on commit c01a443

Please sign in to comment.