mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 02:53:30 +00:00
list(...keys()) so dict_keys does not show up
This commit is contained in:
parent
880ed37026
commit
c63d6cbd08
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class StackBuild(Subcommand):
|
||||||
validator=Validator.from_callable(
|
validator=Validator.from_callable(
|
||||||
lambda x: x in providers_for_api,
|
lambda x: x in providers_for_api,
|
||||||
error_message="Invalid provider, please enter one of the following: {}".format(
|
error_message="Invalid provider, please enter one of the following: {}".format(
|
||||||
providers_for_api.keys()
|
list(providers_for_api.keys())
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
default=(
|
default=(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue