Spaces:
Runtime error
Runtime error
File size: 676 Bytes
dcb2a99 |
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 |
from huggingface_hub import HfApi
import os
# Initialize the Hugging Face API
api = HfApi()
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:
print(f"Space might already exist or there was an error: {e}")
# Upload the files
api.upload_folder(
folder_path=".",
repo_id="nananie143/advanced-reasoning",
repo_type="space",
ignore_patterns=["*.pyc", "__pycache__", ".git", ".env", "*.gguf"]
)
print("Upload completed successfully!")
|