AInive's picture
Create upload.py
f35d5c1 verified
Raw
History Blame Contribute Delete
480 Bytes
from huggingface_hub import HfApi
api = HfApi()
# Nhập token của bạn lấy trên web Hugging Face
huggingface_token = "hf_xxxxxxxxxxxxxxxxxxxxxx"
repo_id = "TenTaiKhoanCuaBan/AI-Nive-Space" # Thay bằng link repo của bạn
api.upload_folder(
folder_path=".", # Đường dẫn thư mục chứa 3 file trên
repo_id=repo_id,
repo_type="space",
token=huggingface_token
)
print("🚀 Đã tải toàn bộ hệ thống lên Hugging Face thành công!")