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

administration.mddocs/

0

# Administration & User Management

1

2

Administrative functions for managing users, workspaces, invitations, and organizational settings.

3

4

## Capabilities

5

6

```python { .api }

7

class Admin:

8

users: Users

9

invites: Invites

10

workspaces: Workspaces

11

12

class Users:

13

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

14

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

15

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

16

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

17

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

18

19

class Workspaces:

20

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

21

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

22

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

23

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

24

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

25

users: WorkspacesUsers

26

```