Update README.md
Browse files
README.md
CHANGED
|
@@ -8,14 +8,30 @@ tags:
|
|
| 8 |
license: apache-2.0
|
| 9 |
language:
|
| 10 |
- en
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
|
| 16 |
-
- **License:** apache-2.0
|
| 17 |
-
- **Finetuned from model :** unsloth/gpt-oss-20b-BF16
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
license: apache-2.0
|
| 9 |
language:
|
| 10 |
- en
|
| 11 |
+
pipeline_tag: text-generation
|
| 12 |
+
library_name: transformers
|
| 13 |
---
|
| 14 |
|
| 15 |
+
This is a content fidelity model. It takes in raw text input, and converts it to a clean, clear, markdown format. Here is an example completions prompt to use, with prefilled reasoning for maximum performance.
|
| 16 |
|
| 17 |
+
Replace `developer_message` with anything you want. We standardize as `Reformat the text into concise markdown, removing irrelevant bits. Strength: high`, but you can tweak the strength, change the prompt, etc.
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
`user_input` is the raw content that you want to extract from.
|
| 20 |
|
| 21 |
+
Using the model in chat mode may have unintended consequences as this is a task specifc model. YMMV
|
| 22 |
+
|
| 23 |
+
```
|
| 24 |
+
<|start|>system<|message|>You are ChatGPT, a large language model trained by OpenAI.
|
| 25 |
+
Knowledge cutoff: 2024-06
|
| 26 |
+
Current date: 2025-08-13
|
| 27 |
+
|
| 28 |
+
Reasoning: medium
|
| 29 |
+
|
| 30 |
+
# Valid channels: analysis, commentary, final. Channel must be included for every message.
|
| 31 |
+
Calls to these tools must go to the commentary channel: 'functions'.<|end|><|start|>developer<|message|>
|
| 32 |
+
{developer_message}<|end|><|start|>user<|message|>
|
| 33 |
+
|
| 34 |
+
{user_input}
|
| 35 |
+
|
| 36 |
+
<|end|><|start|>assistant<|channel|>analysis<|message|>The user wants reformatted text into concise markdown, removing irrelevant bits, high strength. Let's do it concise.<|end|><|start|>assistant<|channel|>final<|message|>
|
| 37 |
+
```
|