lucas-mella commited on
Commit
8cdf748
Β·
verified Β·
1 Parent(s): d649d53

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +29 -10
README.md CHANGED
@@ -1,17 +1,25 @@
1
  ---
2
  license: apache-2.0
3
  base_model: Qwen/Qwen3-4B-Instruct-2507
4
- tags: [gguf, daimon, local-assistant, lora]
5
- language: [es, en]
 
 
 
 
 
 
6
  ---
7
 
8
  # Daimon-R πŸ€–
9
 
10
  ![Daimon-R](daimon-R.png)
11
 
12
- The flagship local brain of **Daimon** β€” reasoning + coding, runs on a GPU via llama.cpp.
13
 
14
- Part of **Daimon**, a local-first personal AI assistant. Daimon-R = `Qwen/Qwen3-4B-Instruct-2507` (quantized GGUF) + a Daimon LoRA, served locally with llama.cpp.
 
 
15
 
16
  ## Benchmarks
17
  Measured locally (llama.cpp, greedy decoding) β€” HumanEval, full 164 problems, pass@1:
@@ -26,12 +34,23 @@ Measured locally (llama.cpp, greedy decoding) β€” HumanEval, full 164 problems,
26
  The Daimon identity/behavior LoRA **preserves the base's coding ability** (parity, within
27
  noise) β€” the finetune targets persona/behavior, not raw coding. Re-measured each finetune.
28
 
29
- ## Files
30
- - `Qwen3-4B-Instruct-2507-Q4_K_M.gguf` (base)
31
- - `daimon-r-lora-f16.gguf` (Daimon LoRA)
32
 
33
- ## Use with Daimon
34
- Daimon downloads these automatically (onboarding -> model setup). Manual:
35
  ```bash
36
- huggingface-cli download lucas-mella/Daimon-R --local-dir ~/.local/share/daimon/models
 
 
 
37
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  base_model: Qwen/Qwen3-4B-Instruct-2507
4
+ tags:
5
+ - gguf
6
+ - daimon
7
+ - local-assistant
8
+ - lora
9
+ language:
10
+ - es
11
+ - en
12
  ---
13
 
14
  # Daimon-R πŸ€–
15
 
16
  ![Daimon-R](daimon-R.png)
17
 
18
+ The flagship local brain of **Daimon** β€” reasoning + coding. Runs on a GPU via llama.cpp.
19
 
20
+ **Daimon-R is the flagship brain of Daimon** β€” a local-first personal AI
21
+ assistant. Daimon-R = `Qwen/Qwen3-4B-Instruct-2507` (quantized GGUF) + a Daimon LoRA, served
22
+ locally with llama.cpp. The weights are open β€” use them standalone today.
23
 
24
  ## Benchmarks
25
  Measured locally (llama.cpp, greedy decoding) β€” HumanEval, full 164 problems, pass@1:
 
34
  The Daimon identity/behavior LoRA **preserves the base's coding ability** (parity, within
35
  noise) β€” the finetune targets persona/behavior, not raw coding. Re-measured each finetune.
36
 
 
 
 
37
 
38
+ ## Run standalone
 
39
  ```bash
40
+ huggingface-cli download lucas-mella/Daimon-R --local-dir ./daimon-models
41
+ # llama.cpp: load the base GGUF and apply the Daimon LoRA
42
+ llama-server -m ./daimon-models/Qwen3-4B-Instruct-2507-Q4_K_M.gguf \
43
+ --lora ./daimon-models/daimon-r-lora-f16.gguf -c 8192
44
  ```
45
+ Exposes an OpenAI-compatible endpoint (default http://localhost:8080/v1).
46
+
47
+ ## Files
48
+ - `Qwen3-4B-Instruct-2507-Q4_K_M.gguf`
49
+ - `daimon-r-lora-f16.gguf`
50
+
51
+ ## Daimon β€” coming soon
52
+ These weights are the brain of **Daimon**, a local-first personal assistant that runs on
53
+ your own machine: real-time local voice, a co-pilot browser that Daimon and you share, a
54
+ canvas for apps & prototypes, and hybrid local/cloud routing. The full app isn't public
55
+ yet β€” these open models are a complement you can already build on. Watch
56
+ [@lucas-mella](https://huggingface.co/lucas-mella) for the release.