Skip to content

Commit eb8f990

Browse files
committed
Merge branch 'development' into experimental
2 parents c6937ea + 3a404a3 commit eb8f990

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

openworm_ai/utils/llms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
LLM_CMD_LINE_ARGS["-o-dsr1"] = LLM_OLLAMA_DEEPSEEK
5353

5454
LLM_OLLAMA_QWEN = "Ollama:qwen3:1.7b"
55-
LLM_CMD_LINE_ARGS["-qw"] = LLM_OLLAMA_QWEN
55+
LLM_CMD_LINE_ARGS["-o-qw"] = LLM_OLLAMA_QWEN
5656

5757
LLM_OLLAMA_CODELLAMA = "Ollama:codellama:latest"
5858
LLM_OLLAMA_FALCON2 = "Ollama:falcon2:latest"

regenerateAndTest.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ elif [ $1 == "-qplot" ]; then
1717
python -m openworm_ai.quiz.figures.quizplots -nogui
1818

1919
elif [ $1 == "-llm" ]; then
20-
python -m openworm_ai.utils.llms -o-l32
21-
python -m openworm_ai.utils.llms -ge3
22-
python -m openworm_ai.quiz.Templates -o-m
20+
21+
python -m openworm_ai.utils.llms # default - ChatGPT
22+
python -m openworm_ai.utils.llms -o-l323b # Ollama:llama3.2:3b
23+
python -m openworm_ai.utils.llms -ge2 # Ollama:gemini2:latest
24+
python -m openworm_ai.utils.llms -o-qw # Ollama:qwen3:1.7b
25+
2326

2427
else
2528
python -m openworm_ai.parser.DocumentModels

0 commit comments

Comments
 (0)