gguf-collections / References /upload_to_hf.py
rajivmehtapy's picture
Upload folder using huggingface_hub
d1974ba verified
raw
history blame
273 Bytes
from huggingface_hub import HfApi
api = HfApi()
model_id = "rajivmehtapy/gguf-collections"
api.create_repo(model_id, exist_ok=True, repo_type="model")
api.upload_file(
path_or_fileobj="AutoCoder_S_6.gguf",
path_in_repo="AutoCoder_S_6.gguf",
repo_id=model_id,
)