from huggingface_hub import login, HfApi | |
# Login to Hugging Face (will prompt for token) | |
login() | |
# Upload the entire folder | |
api = HfApi() | |
api.upload_folder( | |
folder_path=".", # Current directory | |
repo_id="venkatviswa/healthcare-standards-raft", | |
repo_type="model" | |
) | |
print("Upload complete! Your model is now available at:") | |
print("https://huggingface.co/venkatviswa/healthcare-standards-raft") |