Skip to content

Commit 025cbe2

Browse files
authored
Merge pull request #32 from openworm/development
Docs update & added qwen
2 parents 80fe5bc + a1e2284 commit 025cbe2

17 files changed

+7619
-8665
lines changed

corpus/papers/test/BoyleBerriCohen2012.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

corpus/papers/test/PrimerOnCElegans.pdf.json

Lines changed: 1 addition & 4858 deletions
Large diffs are not rendered by default.

corpus/papers/test/SinhaEtAl2025.pdf.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

openworm_ai/graphrag/GraphRAG_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ def process_query(query, model, verbose=False):
268268
"What are the main types of cell in the C. elegans pharynx?",
269269
"Give me 3 facts about the coelomocyte system in C. elegans",
270270
"Tell me about the neurotransmitter betaine in C. elegans",
271+
"Tell me about the different locomotory gaits of C. elegans",
271272
]
272273

273274
print_("Processing %i queries" % len(queries))

openworm_ai/parser/ParseLlamaIndexJson.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ def convert_to_json(paper_ref, paper_info, output_dir):
8787
"corpus/papers/test/Wang2024_NeurotransmitterAtlas.pdf.json",
8888
"https://elifesciences.org/articles/95402",
8989
],
90+
"BoyleBerriCohen2012": [
91+
"corpus/papers/test/BoyleBerriCohen2012.json",
92+
"https://www.frontiersin.org/journals/computational-neuroscience/articles/10.3389/fncom.2012.00010/full",
93+
],
9094
}
9195

9296
# Loop through papers and process markdown sections
1 Byte
Loading

openworm_ai/utils/llms.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@
5050
LLM_CMD_LINE_ARGS["-ge3"] = LLM_OLLAMA_GEMMA3
5151
LLM_OLLAMA_DEEPSEEK = "Ollama:deepseek-r1:7b"
5252
LLM_CMD_LINE_ARGS["-o-dsr1"] = LLM_OLLAMA_DEEPSEEK
53-
LLM_OLLAMA_QWEN = "Ollama:qwen:4b"
54-
LLM_CMD_LINE_ARGS["-qw"] = LLM_OLLAMA_QWEN
53+
54+
LLM_OLLAMA_QWEN = "Ollama:qwen3:1.7b"
55+
LLM_CMD_LINE_ARGS["-o-qw"] = LLM_OLLAMA_QWEN
56+
5557
LLM_OLLAMA_CODELLAMA = "Ollama:codellama:latest"
5658
LLM_OLLAMA_FALCON2 = "Ollama:falcon2:latest"
5759
LLM_OLLAMA_FALCON2 = "Ollama:falcon2:latest"

processed/json/papers/BoyleBerriCohen2012.json

Lines changed: 896 additions & 0 deletions
Large diffs are not rendered by default.

processed/json/papers/Corsi_et_al_2015.json

Lines changed: 869 additions & 167 deletions
Large diffs are not rendered by default.

processed/json/papers/Sinha_et_al_2025.json

Lines changed: 1106 additions & 386 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)