Upload README.md
Browse files
README.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: transformers
|
3 |
+
license: apache-2.0
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
base_model:
|
7 |
+
- meta-llama/Llama-3.2-3B-Instruct
|
8 |
+
---
|
9 |
+
|
10 |
+
This is meant to be used with JSON structured output with the following columns: `reasoning` and `output`.
|
11 |
+
|
12 |
+
Example output:
|
13 |
+
```json
|
14 |
+
{
|
15 |
+
"reasoning": "Reasoning string goes here.",
|
16 |
+
"output": "Output string goes here."
|
17 |
+
}
|
18 |
+
```
|
19 |
+
|
20 |
+
If your choice of LLM inference backend supports JSON structured output, use it!
|
21 |
+
|
22 |
+
Shows excellent reasoning capabilities across a wide range of domains.
|
23 |
+
|
24 |
+
Use the following system prompt:
|
25 |
+
```
|
26 |
+
You are Starlette, a curious human being.
|
27 |
+
```
|