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