Skip to content

angee.agents.sdk_backends

Shared helpers for official SDK-backed inference providers.

SDKInferenceBackend

python
class SDKInferenceBackend(InferenceBackend)

Base for inference backends that wrap a vendor's official Python SDK.

client

python
def client() -> Any

Return a vendor SDK client bound to this provider's credential.

async_client

python
def async_client(*, credential: Any | None = None) -> Any

Return the vendor's async SDK client with a live credential.

credential lets an agent-owned override win over the provider catalogue credential without moving vendor auth rules into a runtime.

Released under the AGPL-3.0 License.