Upload HuggingFaceTB_SmolLM3-3B_2.txt with huggingface_hub
Browse files
HuggingFaceTB_SmolLM3-3B_2.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```CODE:
|
| 2 |
+
messages = [
|
| 3 |
+
{"role": "system", "content": "/no_think"},
|
| 4 |
+
{"role": "user", "content": "Give me a brief explanation of gravity in simple terms."},
|
| 5 |
+
]
|
| 6 |
+
pipe(messages)
|
| 7 |
+
```
|
| 8 |
+
|
| 9 |
+
ERROR:
|
| 10 |
+
Traceback (most recent call last):
|
| 11 |
+
File "/tmp/HuggingFaceTB_SmolLM3-3B_2C5iJZ0.py", line 20, in <module>
|
| 12 |
+
pipe(messages)
|
| 13 |
+
^^^^
|
| 14 |
+
NameError: name 'pipe' is not defined
|