mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 01:48:05 +00:00
fix: reference ProviderImpl config properly
self.config.run_config -> self.config.config Signed-off-by: Charlie Doern <cdoern@redhat.com>
This commit is contained in:
parent
ec1a308dac
commit
457482d7a0
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ class ProviderImpl(Providers):
|
|||
pass
|
||||
|
||||
async def list_providers(self) -> ListProvidersResponse:
|
||||
run_config = self.config
|
||||
run_config = self.config.config
|
||||
safe_config = StackConfig(**redact_sensitive_fields(run_config.model_dump()))
|
||||
providers_health = await self.get_providers_health()
|
||||
ret = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue