@@ -88,8 +88,8 @@ poetry run python scripts/verify.py
8888
8989``` bash
9090# Install Ollama → https://ollama.com
91- ollama pull llama3 # completion model
92- ollama pull nomic -embed-text # embedding model (768d)
91+ ollama pull qwen2.5-coder:0.5b # completion model
92+ ollama pull mxbai -embed-large # embedding model (768d)
9393```
9494
9595### Cloud LLM
@@ -119,8 +119,8 @@ then writes `.secrin.yml`. Commit this file so teammates share the same defaults
119119```
120120? LLM provider (ollama / openai / anthropic): ollama
121121? Ollama host [http://localhost:11434]:
122- ? Ollama model [llama3 ]:
123- ? Embed model [nomic -embed-text ]:
122+ ? Ollama model [qwen2.5-coder:0.5b ]:
123+ ? Embed model [mxbai -embed-large ]:
124124? Neo4j URI [bolt://localhost:7687]:
125125? Neo4j username [neo4j]:
126126? Neo4j password:
@@ -130,7 +130,7 @@ then writes `.secrin.yml`. Commit this file so teammates share the same defaults
130130✓ Created .secrin.yml
131131✓ Updated .env (NEO4J_PASS)
132132✓ Connected to Neo4j (0 nodes found)
133- ✓ Connected to Ollama (llama3 available)
133+ ✓ Connected to Ollama (qwen2.5-coder:0.5b available)
134134
135135Run `secrin graph build --repo <url-or-path>` to index your repo.
136136```
@@ -154,8 +154,8 @@ secrin analyze
154154Runs in two phases:
155155
156156```
157- ⠋ [Phase 1] Summarizing ollama / llama3 Function 48 Class 12 File 21
158- ⠋ [Phase 2] Embedding nomic -embed-text Function 48 Class 12 File 21
157+ ⠋ [Phase 1] Summarizing ollama / qwen2.5-coder:0.5b Function 48 Class 12 File 21
158+ ⠋ [Phase 2] Embedding mxbai -embed-large Function 48 Class 12 File 21
159159
160160╭─ Analysis Results ────────────────────────╮
161161│ Label Summarized Embedded │
@@ -220,7 +220,7 @@ Coverage 98% summarized · 96% embedded
220220Last analyzed 2 hours ago (main @ a3f9c12)
221221Neo4j ● connected bolt://localhost:7687
222222Wiki docs/wiki/ · 47 pages
223- .secrin.yml ✓ ollama / llama3
223+ .secrin.yml ✓ ollama / qwen2.5-coder:0.5b
224224──────────────────────────────────────────────────────────────
225225```
226226
@@ -233,8 +233,8 @@ Wiki docs/wiki/ · 47 pages
233233``` yaml
234234llm :
235235 provider : ollama # ollama | openai | anthropic
236- model : llama3
237- embed_model : nomic -embed-text
236+ model : qwen2.5-coder:0.5b
237+ embed_model : mxbai -embed-large
238238 base_url : http://localhost:11434 # Ollama only; omitted for cloud providers
239239
240240neo4j :
@@ -260,7 +260,7 @@ ANTHROPIC_API_KEY=sk-ant-...
260260# Optional overrides (if you don't use .secrin.yml)
261261LLM_PROVIDER=ollama
262262LLM_MODEL_OLLAMA=qwen2.5-coder:0.5b
263- OLLAMA_EMBEDDING_MODEL=nomic -embed-text
263+ OLLAMA_EMBEDDING_MODEL=mxbai -embed-large
264264EMBEDDING_DIMENSION=768
265265` ` `
266266
0 commit comments