Skip to main content

Settings

Settings allow you to configure global options for LLMOS.

note

Only admin users can manage these settings.

General Settings

auth-token-max-ttl-minutes

TypeDefaultDescription
Integer129600 (30 days)Maximum TTL (in minutes) for all authentication tokens. When set to 0, tokens will never expire.

auth-user-session-max-ttl-minutes

TypeDefaultDescription
Integer720 (12 hours)Custom TTL (in minutes) for a user authentication session.

default-notebook-images

TypeDefaultDescription
JSON StringSee below JSON stringDefault list of images to use for notebooks. JSON keys represent image tags, and values are lists of notebook images.
{
"code-server": [
{
"containerImage": "oneblockai/codeserver-python:latest",
"description": "Visual Studio Code + Conda Python",
"default": true
}
],
"jupyter": [
{
"containerImage": "oneblockai/jupyter-scipy:latest",
"description": "JupyterLab + PyTorch",
"default": true
},
{
"containerImage": "oneblockai/jupyter-pytorch:latest",
"description": "JupyterLab + PyTorch"
},
{
"containerImage": "oneblockai/jupyter-pytorch-full:latest",
"description": "JupyterLab + PyTorch + Common Packages"
},
{
"containerImage": "oneblockai/jupyter-pytorch-cuda:latest",
"description": "JupyterLab + PyTorch + CUDA"
},
{
"containerImage": "oneblockai/jupyter-pytorch-cuda-full:latest",
"description": "JupyterLab + PyTorch + CUDA + Common Packages"
},
{
"containerImage": "oneblockai/jupyter-tensorflow:latest",
"description": "JupyterLab + PyTorch"
},
{
"containerImage": "oneblockai/jupyter-tensorflow-full:latest",
"description": "JupyterLab + PyTorch + Common Packages"
},
{
"containerImage": "oneblockai/jupyter-tensorflow-cuda:latest",
"description": "JupyterLab + PyTorch + CUDA"
},
{
"containerImage": "oneblockai/jupyter-tensorflow-cuda-full:latest",
"description": "JupyterLab + PyTorch + CUDA + Common Packages"
}
],
"rstudio": [
{
"containerImage": "oneblockai/rstudio-tidyverse:latest",
"description": "RStudio + Tidyverse",
"default": true
}
]
}

log-level

TypeDefaultDescription
StringinfoDefines the log level for the LLMOS API server.

server-url

TypeDefaultDescription
String""Default Dashboard installation URL. Must use HTTPS. All nodes in your cluster must be able to reach this URL.

upgrade-check-enabled

TypeDefaultDescription
BooltrueEnables or disables automatic upgrade checks.

upgrade-check-url

TypeDefaultDescription
Stringhttps://llmos-upgrade.1block.ai/v1/versionsDefault LLMOS upgrade check URL. Only used when upgrade-check-enabled is set to true.

UI Settings

ui-index

TypeDefaultDescription
Stringhttps://releases.1block.ai/dashboard/latest/index.htmlHTML index location for the LLMOS Dashboard UI.

ui-pl

TypeDefaultDescription
String"llmos"Specifies the private-label company name.

ui-source

TypeDefaultDescription
Enum"Dynamic"Controls whether UI assets are served locally by the API server or fetched from the remote URL specified in ui-index.