Skip to content

Commit

Permalink
Use the llama3 model by default
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed May 3, 2024
1 parent 0c31897 commit 7206062
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions r2ai/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
import sys
import traceback

#DEFAULT_MODEL = "TheBloke/CodeLlama-34B-Instruct-GGUF"
# DEFAULT_MODEL = "TheBloke/CodeLlama-34B-Instruct-GGUF"
# DEFAULT_MODEL = "TheBloke/llama2-7b-chat-codeCherryPop-qLoRA-GGUF"
DEFAULT_MODEL = "-m TheBloke/dolphin-2_6-phi-2-GGUF"
# DEFAULT_MODEL = "-m TheBloke/dolphin-2_6-phi-2-GGUF"
DEFAULT_MODEL = "-m FaradayDotDev/llama-3-8b-Instruct-GGUF"
r2ai_model_json = "r2ai.model.json" # windows path
if "HOME" in os.environ:
r2ai_model_json = os.environ["HOME"] + "/.r2ai.model"
Expand Down

0 comments on commit 7206062

Please sign in to comment.