Working in workspaces

Verta workspaces enable sharing, collaboration, and permissions.

Projects, datasets, and other entities are created in your default workspace if no workspace is specified. When you sign-up, your personal workspace is your default workspace. The first organization a user is added to becomes their default workspace. You can specify another workspace when initializing Verta to ensure that all the work you do is performed in that workspace.

For example, the workspace parameter is available on various Client methods and can be used as follows:

client.set_project("Sentiment Classification")
# created new Project: Sentiment Classification in Personal workspace if personal workspace is your default workspace
# <Project "Sentiment Classification">
client.set_project("Sentiment Classification")
# reated new Project: Sentiment Classification in Acme-Corp workspace if Acme-Corp organization is your default workspace
# <Project "Sentiment Classification">
client.set_project("Sentiment Classification", workspace="Acme-DS")
# created new Project: Sentiment Classification in workspace: Acme-DS
# <Project "Sentiment Classification">

Last updated