Vaults allow agents to use credentials securely, without making them available to the llms.

from notte_sdk import NotteClient

notte = NotteClient()

# Creating a new vault
vault = notte.vaults.create()

# Add your credentials securely
_ = vault.add_credentials(
    url="https://github.com/",
    email="<your-email>",
    password="<your-password>",
    mfa_secret="<your-mfa-secret>",
)

# Fetching an existing vault
vault = notte.vaults.get("<vault-id>")

See more operations on vaults: