Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
---
|
2 |
language:
|
3 |
- en
|
@@ -8,6 +9,8 @@ base_model:
|
|
8 |
- Qwen/Qwen3-235B-A22B
|
9 |
---
|
10 |
|
|
|
|
|
11 |
## Overview
|
12 |
|
13 |
Arcee Homunculus is a 12B parameter model developed by Arcee.ai, based on the Mistral Nemo architecture.
|
@@ -22,12 +25,15 @@ Homunculus is a surprisingly powerful model for its size, showing strong perform
|
|
22 |
## Basic use
|
23 |
|
24 |
```
|
|
|
25 |
# Use a pipeline as a high-level helper
|
|
|
26 |
from transformers import pipeline
|
27 |
|
28 |
pipe = pipeline("text-generation", model="arcee-ai/Homunculus")
|
29 |
-
messages = [
|
30 |
-
|
31 |
]
|
32 |
pipe(messages)
|
33 |
-
|
|
|
|
1 |
+
|
2 |
---
|
3 |
language:
|
4 |
- en
|
|
|
9 |
- Qwen/Qwen3-235B-A22B
|
10 |
---
|
11 |
|
12 |
+

|
13 |
+
|
14 |
## Overview
|
15 |
|
16 |
Arcee Homunculus is a 12B parameter model developed by Arcee.ai, based on the Mistral Nemo architecture.
|
|
|
25 |
## Basic use
|
26 |
|
27 |
```
|
28 |
+
|
29 |
# Use a pipeline as a high-level helper
|
30 |
+
|
31 |
from transformers import pipeline
|
32 |
|
33 |
pipe = pipeline("text-generation", model="arcee-ai/Homunculus")
|
34 |
+
messages = \[
|
35 |
+
{"role": "user", "content": "Who are you?"},
|
36 |
]
|
37 |
pipe(messages)
|
38 |
+
|
39 |
+
```
|