# /// script # requires-python = ">=3.12" # dependencies = [ # "transformers", # "torch", # ] # /// try: # Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/DeepSeek-R1", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("deepseek-ai/DeepSeek-R1", trust_remote_code=True) with open('DeepSeek-R1_1.txt', 'w') as f: f.write('Everything was good in DeepSeek-R1_1') except Exception as e: with open('DeepSeek-R1_1.txt', 'w') as f: import traceback traceback.print_exc(file=f) finally: from huggingface_hub import upload_file upload_file( path_or_fileobj='DeepSeek-R1_1.txt', repo_id='model-metadata/custom_code_execution_files', path_in_repo='DeepSeek-R1_1.txt', repo_type='dataset', )