or run

npx @tessl/cli init
Log in

Version

Tile

Overview

Evals

Files

Files

docs

administration.mdassistants-threads.mdbatch-processing.mdbeta-realtime.mdchat-completions.mdconfiguration-management.mdcontainer-content.mdcore-client.mdembeddings.mdevaluation-testing.mdfeedback-collections.mdfile-management.mdfine-tuning.mdframework-integrations.mdindex.mdkey-management.mdmodels.mdmultimodal-apis.mdobservability-analytics.mdprompt-management.mdprovider-integration.mdtext-completions.mduploads.mdvector-stores.md

provider-integration.mddocs/

0

# Provider & Integration Management

1

2

Management of AI providers and third-party integrations with workspace-level and model-level configuration.

3

4

## Capabilities

5

6

```python { .api }

7

class Providers:

8

def list(self, **kwargs): ...

9

def retrieve(self, **kwargs): ...

10

11

class Integrations:

12

workspaces: IntegrationsWorkspaces

13

models: IntegrationsModels

14

15

class IntegrationsWorkspaces:

16

def create(self, **kwargs): ...

17

def list(self, **kwargs): ...

18

def retrieve(self, **kwargs): ...

19

20

class IntegrationsModels:

21

def list(self, **kwargs): ...

22

def retrieve(self, **kwargs): ...

23

```