RidePricingInsightEngine / create_repo.py
GitHub Actions
πŸš€ Deploying to Hugging Face Space: RidePricingInsightEngine
7ea5672
raw
history blame contribute delete
182 Bytes
from huggingface_hub import HfApi
repo_name = "dynamic-pricing-model"
api = HfApi()
# Create a new repository
api.create_repo(repo_id=repo_name, repo_type="model", exist_ok=False)