Skip to main content
Two features turn UniversalBench from a remote sandbox into a real execution platform: persistent sessions and the encrypted secrets vault. Both come at no extra cost on every plan.

Persistent sessions

By default every call is independent. Pass a session_id and Python variables, imports, and cached connections persist across calls within the same session.
The next call with the same session_id can reference df directly without reimporting pandas or re reading the file:
Sessions are stored server side and tied to your account. They expire after a period of inactivity. For long running pipelines, ping a small call every few minutes to keep the session warm.

Encrypted secrets vault

Store API keys, tokens, and credentials once. Your AI injects them at runtime by name without ever seeing the value.
After that, your AI can reference the secret by name in subsequent calls:
ActionPurpose
saveEncrypt and store a new secret, or update an existing one
listList names of stored secrets (values are never returned)
getRetrieve a stored secret value (returned to the workbench, never to the AI’s context window directly)
deleteRemove a secret permanently
Encryption is AES 256 GCM at rest. The master key never appears in any response or log. Secrets are scoped to your account: another customer cannot read your secrets even with their own valid URL.

Combining tools in one call

The execute tool accepts multiple input fields in a single call. The workbench evaluates them in a sensible order. For example, search the web and then run analysis on the result without two round trips:
Most AI clients will discover this pattern naturally if you describe what you want in plain English. You do not usually need to hand craft these requests.

Prompt patterns for parallel work

While there is no batch capability in the public tool, your AI can still parallelize by issuing multiple execute calls. Tell it to do so:
Use UniversalBench to run these three checks at the same time, in parallel: total signups yesterday, total signups last week, and total signups this month.
Most modern AI clients (Claude, Cursor Composer, Windsurf Cascade) will issue the three tool calls concurrently rather than sequentially when given an explicit parallel instruction.

Working with files

The workbench has a temporary filesystem at /tmp that persists for the duration of a session.
  • Write a file via Python: open('/tmp/data.json', 'w').write(...)
  • Read a file via the file_read input: {"file_read": "/tmp/data.json"}
  • Files outside /tmp and files larger than a few hundred MB are not supported.
For permanent storage, use the secrets vault for credentials or store data in your own database via code and your DB client of choice.