fix: Fix locations of distrubution runtime directories (#3336)

The defaults were mixed up

Signed-off-by: Derek Higgins <derekh@redhat.com>
This commit is contained in:
Derek Higgins 2025-09-05 13:09:36 +01:00 committed by GitHub
parent 0b00c68d59
commit 64b2977162
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 21 additions and 26 deletions

View file

@ -99,9 +99,8 @@ def get_remote_inference_providers() -> list[Provider]:
return inference_providers
def get_distribution_template() -> DistributionTemplate:
def get_distribution_template(name: str = "starter") -> DistributionTemplate:
remote_inference_providers = get_remote_inference_providers()
name = "starter"
providers = {
"inference": [BuildProvider(provider_type=p.provider_type, module=p.module) for p in remote_inference_providers]