Spaces:
Sleeping
Sleeping
| from transformers import AutoTokenizer | |
| # Test if you can access the model | |
| try: | |
| tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-7B-Instruct") | |
| print("β Qwen2.5-7B-Instruct - Access granted!") | |
| except Exception as e: | |
| print(f"β Error: {e}") | |
| try: | |
| tokenizer = AutoTokenizer.from_pretrained("microsoft/Phi-3-mini-128k-instruct") | |
| print("β Phi-3-mini - Access granted!") | |
| except Exception as e: | |
| print(f"β Error: {e}") | |