File size: 445 Bytes
08b0543 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """One-shot upload of project files to HuggingFace Space."""
from huggingface_hub import HfApi
api = HfApi()
api.upload_folder(
folder_path=".",
repo_id="neongeckocom/LLM_Comparison_Tool",
repo_type="space",
ignore_patterns=[
".git/*", ".env", "node_modules/*", "__pycache__/*",
"*.pyc", "upload_hf.py", ".gitattributes",
"frontend/node_modules/*", "frontend/build/*",
],
)
print("Upload complete!")
|