docs
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
```