Skip to main content

JupyterLab extension for BioLM API integration

Project description

BioLM JupyterLab Extension

PyPI version PyPI downloads License Python JupyterLab CI

A JupyterLab extension that provides a graphical interface for browsing BioLM models, inserting SDK code snippets, and managing authentication - all from within JupyterLab's sidebar.

Features

🧠 Models Tab

  • Browse all available BioLM models
  • Search and filter models by name, description, or tags
  • Click tags to insert code snippets with model + action pre-filled
  • Copy model IDs to clipboard
  • Expandable model descriptions

⚙️ Operations Tab

  • Quick access to common SDK operation examples
  • Searchable list of operations (Generate, Predict, Embed, etc.)
  • One-click code insertion into notebook cells
  • Organized by category

🔑 Settings Tab

  • Manage multiple API key profiles
  • Test API key connections
  • Set default model and action preferences
  • Respects BIOLM_API_KEY environment variable

Installation

From PyPI (when available)

pip install jupyterlab-biolm

From Source

# Clone the repository
git clone https://github.com/yourusername/jupyterlab-biolm.git
cd jupyterlab-biolm

# Install the extension
pip install -e .

# Build the extension
jlpm install
jlpm build

# Rebuild JupyterLab
jupyter lab build

Usage

  1. Open the Extension: The BioLM sidebar will appear in JupyterLab's left sidebar. If not visible, use the command palette (Cmd/Ctrl + Shift + C) and search for "Open BioLM".

  2. Configure API Key:

    • Go to the Settings tab
    • Add a new profile with your API key
    • Or use the BIOLM_API_KEY environment variable
  3. Browse Models:

    • Switch to the Models tab
    • Search or filter by tags
    • Click a tag button to insert code for that model + action
  4. Use Operations:

    • Switch to the Operations tab
    • Browse common SDK operations
    • Click "Insert" to add code to your active notebook cell

Development

Prerequisites

  • Node.js >= 16
  • Python >= 3.8
  • JupyterLab >= 4.0.0

Setup

# Install dependencies
jlpm install

# Build TypeScript
jlpm build:lib

# Build extension in development mode
jlpm build:labextension:dev

# Watch for changes
jlpm watch

Project Structure

jupyterlab-biolm/
├── src/                    # TypeScript source
│   ├── index.ts           # Extension entry point
│   ├── widget.tsx         # Main sidebar widget
│   ├── api/               # API client
│   ├── components/        # React components
│   ├── services/          # Business logic
│   └── data/              # Static data
├── style/                  # CSS styles
├── schema/                 # Settings schema
└── jupyterlab_biolm/       # Python package

Configuration

User Settings

The extension stores settings in JupyterLab's settings system. You can configure:

  • API Key Profiles: Multiple named profiles with different API keys
  • Active Profile: Which profile to use (or environment variable)
  • Default Model: Default model ID for code generation
  • Default Action: Default action (predict, generate, etc.)

Environment Variables

The extension supports several environment variables for deployment-level configuration:

BIOLM_USE_PROXY (default: true)

Controls whether to use the server-side proxy for API requests or make direct API calls from the browser.

  • true (default): Use server proxy to avoid CORS issues. Recommended for most deployments.
  • false: Make direct API calls from the browser. Only use when CORS is properly configured on the API server.
# Use proxy (default, recommended)
export BIOLM_USE_PROXY=true

# Use direct API calls (requires CORS configuration)
export BIOLM_USE_PROXY=false

BIOLM_API_BASE_URL (default: https://biolm.ai/api/ui/community-api-models/)

Sets the base URL for the BioLM API. Useful for:

  • Testing against staging environments
  • Using self-hosted BioLM instances
  • API version changes
# Use default production API
export BIOLM_API_BASE_URL=https://biolm.ai/api/ui/community-api-models/

# Use staging environment
export BIOLM_API_BASE_URL=https://staging.biolm.ai/api/ui/community-api-models/

Note: The URL should end with a trailing slash. If not provided, one will be added automatically.

BIOLM_REQUEST_TIMEOUT (default: 10)

Sets the timeout (in seconds) for API requests made by the server extension.

# Use default 10 second timeout
export BIOLM_REQUEST_TIMEOUT=10

# Increase timeout for slow networks
export BIOLM_REQUEST_TIMEOUT=30

BIOLM_CACHE_TTL (default: 300000)

Sets the cache time-to-live in milliseconds for model metadata. The default is 5 minutes (300000 ms).

# Use default 5 minute cache
export BIOLM_CACHE_TTL=300000

# Disable caching (0) or set custom duration
export BIOLM_CACHE_TTL=600000  # 10 minutes

BIOLM_API_KEY (optional)

Sets the default API key to use if no profile is selected in the UI. This is a user-facing setting that can also be configured in the Settings tab.

export BIOLM_API_KEY=your_api_key_here

Example: Docker Deployment

FROM jupyter/scipy-notebook

# Install extension
RUN pip install jupyterlab-biolm

# Configure environment variables
ENV BIOLM_USE_PROXY=true
ENV BIOLM_API_BASE_URL=https://biolm.ai/api/ui/community-api-models/
ENV BIOLM_REQUEST_TIMEOUT=10
ENV BIOLM_CACHE_TTL=300000

Example: Codespaces / Cloud Deployment

Set environment variables in your deployment configuration:

# .github/workflows/deploy.yml or similar
env:
  BIOLM_USE_PROXY: "false"  # If CORS is configured
  BIOLM_API_BASE_URL: "https://biolm.ai/api/ui/community-api-models/"
  BIOLM_REQUEST_TIMEOUT: "15"

API Integration

The extension fetches model metadata from https://api.biolm.ai/models. Models are cached for 5 minutes to reduce API calls.

Requirements

  • JupyterLab >= 4.0.0
  • React >= 18.0.0

License

BSD-3-Clause

Support

For issues and feature requests, please visit the GitHub repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupyterlab_biolm-1.4.0.tar.gz (382.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jupyterlab_biolm-1.4.0-py3-none-any.whl (178.2 kB view details)

Uploaded Python 3

File details

Details for the file jupyterlab_biolm-1.4.0.tar.gz.

File metadata

  • Download URL: jupyterlab_biolm-1.4.0.tar.gz
  • Upload date:
  • Size: 382.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for jupyterlab_biolm-1.4.0.tar.gz
Algorithm Hash digest
SHA256 007fe37dd3223164157a85d39dd8a28b598a0ec794fd8c24b75f176a7ba6a8d3
MD5 b2dccf58a53416a242a6b8bafcdcf626
BLAKE2b-256 56e4bbd2dff7d381c607c33d0d7ec7d39aa99f3541d5b6f34da90598b311073e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jupyterlab_biolm-1.4.0.tar.gz:

Publisher: publish.yml on BioLM/jupyterlab-biolm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jupyterlab_biolm-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for jupyterlab_biolm-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f87801e8bda9a8e47def4fd9e9c7a1bd1da60851afc69b1593bbcd83aa08b7f0
MD5 b37ffd14c3ffd17d4bdaa9e4e536187b
BLAKE2b-256 690b655bc70850d21b242c2fd3e20e1244b4e770a72ce3b118e7dcdb8397a191

See more details on using hashes here.

Provenance

The following attestation bundles were made for jupyterlab_biolm-1.4.0-py3-none-any.whl:

Publisher: publish.yml on BioLM/jupyterlab-biolm

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page