mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 15:23:51 +00:00
dict key instead of attr
This commit is contained in:
parent
7cc0445517
commit
08c3802f45
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ def resolve_impls(dist: DistributionSpec, config: Dict[str, Any]) -> Dict[Api, A
|
|||
provider_config = provider_configs[api.value]
|
||||
if isinstance(provider_spec, RemoteProviderSpec):
|
||||
impls[api] = instantiate_client(
|
||||
provider_spec, provider_config.base_url.rstrip("/")
|
||||
provider_spec, provider_config["base_url"].rstrip("/")
|
||||
)
|
||||
else:
|
||||
deps = {api: impls[api] for api in provider_spec.api_dependencies}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue