ProvidersClient
adaline.providers lists and inspects the LLM providers configured in your workspace. Every method is async.
Access
adaline_api:
list()
List every provider configured in the workspace.Returns
ListProvidersResponse with { data: list[Provider] }.
Example
get()
Fetch a single provider. Passinclude_models=True to also return the list of models available under this provider.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
provider_id | str | Yes | Provider identifier. |
include_models | Optional[bool] | No | When True, populate available_models in the response. |
Example
See Also
- Adaline class
- ModelsClient
- API reference: List providers · Get provider