Yera Get
The get command reads and prints resolved configuration values, stored
objects, and credential data. It covers the full breadth of Yera's config
surface — settings, hubs, providers, profiles, models, and credentials — and
always prints the fully resolved value rather than the raw file contents. Use
get to verify what Yera will actually see at runtime, or to script config
inspection in CI.
yera get
Get config entries and Yera object data.
yera get setting
Print the resolved value of a single setting.
yera get setting SETTING_NAMEArguments
Settings field name: one of enable_telemetry, log_level, max_retries, timeout_seconds. The printed value is fully resolved (pyproject.toml → yera.toml → model defaults).
yera get settings
Print all resolved settings and the resolved default hub name.
yera get settingsyera get hub
Print one hub's config as JSON.
Args:
hub_name: Hub name to inspect. If omitted, uses the resolved default hub
(``pyproject.toml`` ``[tool.yera] hub``, then ``yera.toml``
``[hubs] default``).
yera get hub [HUB_NAME]Arguments
Hub name to inspect. If omitted, uses the resolved default hub
(pyproject.toml [tool.yera] hub, then yera.toml
[hubs] default).
yera get hubs
Print every hub entry from config as JSON.
yera get hubsyera get cred-group
Show active credential group or inspect a named group's metadata.
Args:
name: Credential group name to inspect. If omitted, prints the active
group name. If provided, prints the named group's metadata as JSON.
yera get cred-group [NAME]Arguments
Credential group name to inspect. If omitted, prints the active group name. If provided, prints the named group's metadata as JSON.
yera get providers
Print all configured providers as JSON.
yera get providersyera get cred-groups
List all credential groups with credential counts and authorised roots.
yera get cred-groupsyera get cred
Print the plain value of a single credential leaf.
Args:
key: Exact dotted leaf key.
allow_missing: Exit 0 and print nothing if the key is absent.
yera get cred KEY [--allow-missing]Arguments
Exact dotted leaf key.
Options
Exit 0 and print nothing if the key is absent.
yera get creds
Inspect credentials for the active credential group.
Args:
path: Dotted path prefix to scope the output. Omit for all credentials
in the active group.
keys_only: Print key names only.
reveal: Show real credential values instead of ``***``.
yera get creds [PATH] [--keys-only] [--reveal]Arguments
Dotted path prefix to scope the output. Omit for all credentials in the active group.
Options
Print key names only.
Show real credential values instead of ***.
yera get provider
Print one provider's config including all connections as JSON.
Args:
provider_type: Provider type to inspect. Must be a configured provider.
yera get provider PROVIDER_TYPEArguments
Provider type to inspect.
yera get profile
Print the currently active Yera profile as JSON.
yera get profileyera get profiles
Print all configured Yera profiles as JSON.
yera get profilesyera get model
Print all entries for a model id visible under the active Yera profile as JSON.
Since the same model id can exist under multiple connections, all matching
entries visible in the active profile are printed.
Args:
model_id: Yera-internal dot-delimited model id, e.g. ``aws.meta.llama3``.
yera get model MODEL_IDArguments
Yera model id, e.g. aws.meta.llama3.
yera get models
Print all models visible under the active Yera profile as JSON.
Args:
model_type: If set, only models of this type are returned.
yera get models [MODEL_TYPE]Arguments
Filter by model type.