Skip to main content

Preferences

You can access the Preferences page from Workbench by clicking on Preferences in the bottom-left corner.

This page contains general user preferences, experimental features, theme selection, data settings, and other customization options.

Preferences button location

This page is roughly split in 2 sections:

preferences page sections

Kernel

Selecting a kernel in Workbench sets the environment for your session, providing access to Python libraries at runtime. Contact the Fused team through Slack, Discord or email to set up new kernels.

kernel

Secrets management

Store and manage secrets that are securely encrypted in the backend.

secrets management

Add secrets directly in the UI by clicking "+ Add new secret"

You can then retrieve secrets from your UDF:

import fused
fused.secrets["my_secret"]

You can also list all available secrets with:

dir(fused.secrets)

Environment variables

env variables

Environment variables in Fused are pre-configured by the Fused team. Contact the Fused team to set new ones.

These variables can be accessed in the usual way through Python's os module:

import os
os.environ["ENV_VAR_NAME"]