Spaces:
Runtime error
Runtime error
File size: 1,900 Bytes
dcb2a99 1a7fda5 dcb2a99 1a7fda5 dcb2a99 1a7fda5 dcb2a99 1a7fda5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
from huggingface_hub import HfApi
import os
import sys
def check_token():
"""Check if HUGGINGFACE_TOKEN is properly set."""
token = os.environ.get("HUGGINGFACE_TOKEN")
if not token:
print("Error: HUGGINGFACE_TOKEN not found in environment variables.")
print("Please ensure you have:")
print("1. Created a .env file from .env.example")
print("2. Added your Hugging Face token to the .env file")
print("3. The token has write access to Spaces")
sys.exit(1)
return token
# Check token before proceeding
token = check_token()
# Initialize the Hugging Face API
try:
api = HfApi(token=token)
except Exception as e:
print(f"Error initializing Hugging Face API: {e}")
sys.exit(1)
print("Starting upload to Hugging Face Space...")
# Create a new Space if it doesn't exist
try:
api.create_repo(
repo_id="nananie143/advanced-reasoning",
repo_type="space",
space_sdk="gradio",
private=False
)
except Exception as e:
if "409" in str(e): # HTTP 409 Conflict - repo already exists
print("Space already exists, continuing with upload...")
else:
print(f"Error creating Space: {e}")
print("Please check your token permissions and network connection.")
sys.exit(1)
# Upload the files
try:
api.upload_folder(
folder_path=".",
repo_id="nananie143/advanced-reasoning",
repo_type="space",
ignore_patterns=["*.pyc", "__pycache__", ".git", ".env", "*.gguf"]
)
print("Upload completed successfully!")
except Exception as e:
print(f"Error uploading files: {e}")
print("\nTroubleshooting steps:")
print("1. Check your internet connection")
print("2. Verify your HUGGINGFACE_TOKEN has write access")
print("3. Ensure you're not rate limited")
print("4. Try again in a few minutes")
sys.exit(1)
|