Upload HuggingFaceTB_SmolLM3-3B_2.py with huggingface_hub
Browse files
HuggingFaceTB_SmolLM3-3B_2.py
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# /// script
|
2 |
+
# requires-python = ">=3.12"
|
3 |
+
# dependencies = [
|
4 |
+
# "transformers",
|
5 |
+
# "torch",
|
6 |
+
# ]
|
7 |
+
# ///
|
8 |
+
|
9 |
+
try:
|
10 |
+
messages = [
|
11 |
+
{"role": "system", "content": "/no_think"},
|
12 |
+
{"role": "user", "content": "Give me a brief explanation of gravity in simple terms."},
|
13 |
+
]
|
14 |
+
pipe(messages)
|
15 |
+
with open('HuggingFaceTB_SmolLM3-3B_2.txt', 'w') as f:
|
16 |
+
f.write('Everything was good in HuggingFaceTB_SmolLM3-3B_2.txt')
|
17 |
+
except Exception as e:
|
18 |
+
with open('HuggingFaceTB_SmolLM3-3B_2.txt', 'w') as f:
|
19 |
+
import traceback
|
20 |
+
traceback.print_exc(file=f)
|
21 |
+
finally:
|
22 |
+
from huggingface_hub import upload_file
|
23 |
+
upload_file(
|
24 |
+
path_or_fileobj='HuggingFaceTB_SmolLM3-3B_2.txt',
|
25 |
+
repo_id='model-metadata/custom_code_execution_files',
|
26 |
+
path_in_repo='HuggingFaceTB_SmolLM3-3B_2.txt',
|
27 |
+
repo_type='dataset',
|
28 |
+
)
|