Red Hat Developer Hub 1.10

Interacting with Red Hat Developer Lightspeed for Red Hat Developer Hub

Leverage Artificial Intelligence (AI)-driven expertise of the Red Hat Developer Lightspeed for Red Hat Developer Hub (Developer Lightspeed for RHDH) virtual assistant to help you use Red Hat Developer Hub (RHDH)

Red Hat Customer Content Services

Abstract

Red Hat Developer Lightspeed for Red Hat Developer Hub (Developer Lightspeed for RHDH) is an AI-powered virtual assistant for Red Hat Developer Hub (RHDH). You can interact with Developer Lightspeed for RHDH to explore RHDH capabilities in detail.

Red Hat Developer Lightspeed for Red Hat Developer Hub (Developer Lightspeed for RHDH) is an AI-powered virtual assistant for Red Hat Developer Hub (RHDH). You can interact with Developer Lightspeed for RHDH to explore RHDH capabilities in detail.

1. Chat assistance with Developer Lightspeed for RHDH

Use Developer Lightspeed for RHDH to find product information, discover features, and resolve technical questions using natural language prompts directly within the RHDH console.

Important

Developer Lightspeed for RHDH uses a FAB instead of a sidebar navigation item. If your environment uses another global FAB, you must move the existing button or disable it to prevent interface elements from overlapping. In your dynamic plugin configuration file, make the following update:

- package: ./dynamic-plugins/dist/red-hat-developer-hub-backstage-plugin-bulk-import
  disabled: true
  pluginConfig:
    dynamicPlugins:
      frontend:
        red-hat-developer-hub.backstage-plugin-bulk-import:
          mountPoints:
            - mountPoint: global.floatingactionbutton/config
              importName: BulkImportPage # Example
              config:
                slot: 'bottom-left'
                icon: BulkImportIcon
                label: 'Bulk import'
                toolTip: 'Register multiple repositories in bulk'
                to: /bulk-import
          translationResources:
          - importName: bulkImportTranslations
            module: Alpha
            ref: bulkImportTranslationRef
          appIcons:
          - name: bulkImportIcon
            importName: BulkImportIcon
          dynamicRoutes:
          - path: /bulk-import
            importName: BulkImportPage
            menuItem:
              icon: bulkImportIcon
              text: Bulk import
              textKey: menuItem.bulkImport
Lightspeed chatbot on the home page

2. Red Hat Developer Lightspeed for Red Hat Developer Hub architecture for your AI backend deployment

Review the Developer Lightspeed for RHDH component architecture to plan your system layout and coordinate connections with your artificial intelligence (AI) backend deployment.

The architecture relies on the Lightspeed Core Service (LCORE) container, which operates as the primary intermediary layer to manage Developer Lightspeed for RHDH functionality and console user interactions. By default, the interface appears as a floating action button (FAB) on all platforms that host RHDH.

2.1. AI reference and tool-calling capabilities through Lightspeed Core Service

Review the core components managed by the Lightspeed Core Service(LCORE) sidecar container to plan integrations with large language models (LLM) and tool runtime providers.

The LCORE container deploys as a sidecar to extend RHDH functionality. The container integrates and manages the following core architectural components:

  • Large language model (LLM) inference providers
  • Model Context Protocol (MCP) or Retrieval Augmented Generation (RAG) tool runtime providers

    Important

    You must verify that your model supports tool calling before you enable MCP features. Using an incompatible model results in error messages.

  • Safety providers
  • Vector database settings

LCORE also manages critical operational configuration and key data, specifically:

  • User feedback collection
  • MCP server configuration
  • Chat history

Developer Lightspeed for RHDH sends prompts and receives LLM responses through the LCORE sidecar.

3. Retrieval augmented generation (RAG) embeddings for grounded AI responses

Use retrieval-augmented generation (RAG) embeddings to ground artificial intelligence (AI) responses in your internal documentation and provide verified citations during user interactions.

The RHDH documentation serves as the primary data source for RAG operations. To provide accurate citations to production documentation during inference, the system uses RAG embeddings stored within a vector database.

The system processes RAG data through the following sequence:

  • An initialization container copies the RAG data to a shared volume.
  • The Lightspeed Core Service (LCORE) sidecar container mounts the shared volume to access the data.
  • The sidecar layer uses the embeddings to attach precise documentation references to the chat responses.

4. Configure Developer Lightspeed for RHDH to initialize the AI assistant

Red Hat Developer Lightspeed for Red Hat Developer Hub is enabled by default on Red Hat Developer Hub (RHDH) instances. To provide developers with chat assistance, configure your deployment settings by using either the Operator or the Helm chart.

Important

Perform a fresh installation to ensure compatibility with the updated system architecture. Do not update directly from the previous version. Direct updates cause operational errors because the Helm values.yaml file structure has changed.

4.1. Configure Developer Lightspeed for RHDH by using the Operator

Configure Developer Lightspeed for RHDH by updating your Backstage custom resource (CR) to map environment variables, manage configurations, and set access rights.

Prerequisites

  • The RHDH Operator is installed on your cluster.
  • You have cluster administrator privileges.

Procedure

  1. Optional: To disable the chat interface and prevent the Operator from injecting unconfigured sidecar containers, set the lightspeed.enabled flag to false in the spec section of your Backstage CR YAML file:

    spec:
      application:
        lightspeed:
          enabled: false
  2. Create an opaque Kubernetes Secret containing your operational credentials and query safety guardrails before applying the Backstage CR. Refer to the following key definitions for required environment variables:

    Important

    To disable an inference provider or configuration feature, you must leave the corresponding ENABLE_* variable completely unset. Setting an ENABLE_* variable to false does not disable the component because the underlying system checks only whether the variable is defined.

KeyDescription

ENABLE_VLLM

Enables the vLLM platform when set to "true".

VLLM_URL

Specifies the target API endpoint URL for vLLM (for example, https://<api_endpoint>/v1).

VLLM_API_KEY

Stores the authorization token for your vLLM platform.

ENABLE_OPENAI

Enables the OpenAI platform when set to "true".

OPENAI_API_KEY

Stores the authorization secret key for OpenAI.

ENABLE_OLLAMA

Enables the Ollama platform when set to "true".

OLLAMA_URL

Specifies the target endpoint URL for Ollama.

ENABLE_VERTEX_AI

Enables the Vertex AI platform when set to "true".

VERTEX_AI_PROJECT

Specifies your Google Cloud project ID.

VERTEX_AI_LOCATION

Specifies your target Google Cloud region.

GOOGLE_APPLICATION_CREDENTIALS

Specifies the file path of your mounted Google Cloud service account credentials JSON file.

ENABLE_VALIDATION

Activates query safety validation guardrails when set to "true".

VALIDATION_PROVIDER

Defines the active provider managing the verification routines (for example, openai or vllm).

VALIDATION_MODEL_NAME

Specifies the exact verification model to use (for example, gpt-4o-mini).

+ The following code shows an example configuration Secret for vLLM with validation:

apiVersion: v1
kind: Secret
metadata:
  name: lightspeed-auth-secrets
type: Opaque
stringData:
  ENABLE_VLLM: "true"
  VLLM_URL: "https://<api_endpoint>/v1"
  VLLM_API_KEY: "<api_key>"
  ENABLE_VALIDATION: "true"
  VALIDATION_PROVIDER: "vllm"
  VALIDATION_MODEL_NAME: "llama3.1"
  1. Map your secret inside the extraEnvs section of the Backstage CR to complete container provisioning:

    apiVersion: rhdh.redhat.com/v1alpha5
    kind: Backstage
    metadata:
      name: lightspeed-rhdh
    spec:
      application:
        extraEnvs:
          secrets:
            - name: lightspeed-auth-secrets
              containers:
                - lightspeed-core
  2. Optional: To protect settings such as Model Context Protocol (MCP) server additions from being overwritten during reconciliation loops, define a custom ConfigMap mapping in the extraFiles section of the CR:

        extraFiles:
          configMaps:
            - name: "my-custom-config"
              mountPath: /app-root
              key: lightspeed-stack.yaml
              containers:
                - lightspeed-core
  3. Configure access rights by updating the RBAC policy inside your Backstage CR:

    To grant non-administrator teams access to the virtual assistant, append permission lines to the rbac-policies.csv section, replacing <team> with your target team name:

p, role:default/<team>, lightspeed.chat.read, read, allow
p, role:default/<team>, lightspeed.chat.create, create, allow
  1. Apply the updated custom resource manifest to your cluster:

    oc apply -f <backstage_cr_file>.yaml

Verification

  1. Log in to your console instance.
  2. Verify that the Open Lightspeed floating action button (FAB) appears on the home page.
  3. Select the FAB and confirm that the chat window initializes successfully.

4.2. Configure Developer Lightspeed for RHDH by using the Helm chart

Configure Developer Lightspeed for RHDH by using the Helm chart to manage large language model (LLM) providers, enable validation guardrails, and authorize custom role-based access control (RBAC) policies.

Prerequisites

  • You have access to a running RHDH instance deployed with Helm.
  • You have operational credentials for your chosen LLM provider.

Procedure

  1. Optional: To disable the chat interface, update the global.lightspeed.enabled parameter to false in your Helm values.yaml file:

    global:
      lightspeed:
        enabled: false
  2. Create a manual Kubernetes Secret to store your provider credentials.

    Note

    By default, the Helm installation creates a temporary Kubernetes Secret containing keys for various LLM providers. On subsequent helm upgrade cycles, the system overwrites this default Secret. You must create a manual Kubernetes Secret to persist your credentials.

    Add the required keys to your secret based on your provider requirements:

    Important

    To disable an inference provider or configuration feature, you must leave the corresponding ENABLE_* variable completely unset. Setting an ENABLE_* variable to false does not disable the component because the underlying system checks only whether the variable is defined.

KeyDescription

ENABLE_VLLM

Enables the vLLM platform when set to "true".

VLLM_URL

Specifies the target API endpoint URL for vLLM (for example, https://<api_endpoint>/v1).

VLLM_API_KEY

Stores the authorization token for your vLLM platform.

ENABLE_OPENAI

Enables the OpenAI platform when set to "true".

OPENAI_API_KEY

Stores the authorization secret key for OpenAI.

ENABLE_OLLAMA

Enables the Ollama platform when set to "true".

OLLAMA_URL

Specifies the target endpoint URL for Ollama.

ENABLE_VERTEX_AI

Enables the Vertex AI platform when set to "true".

VERTEX_AI_PROJECT

Specifies your Google Cloud project ID.

VERTEX_AI_LOCATION

Specifies your target Google Cloud region.

GOOGLE_APPLICATION_CREDENTIALS

Specifies the file path of your mounted Google Cloud service account credentials JSON file.

ENABLE_VALIDATION

Activates query safety validation guardrails when set to "true".

VALIDATION_PROVIDER

Defines the active provider managing the verification routines (for example, openai or vllm).

VALIDATION_MODEL_NAME

Specifies the exact verification model to use (for example, gpt-4o-mini).

+

Note

Vertex AI requires custom architecture mapping and has received limited testing.

  1. Optional: To filter and reject off-topic user queries, add validation guardrails to your manual Secret:

    • Set ENABLE_VALIDATION to "true".
    • Set VALIDATION_PROVIDER to your enabled validation provider (for example, openai).
    • Set VALIDATION_MODEL_NAME to your specific verification model (for example, gpt-4o-mini).
  2. Reference your manual secret inside the values.yaml file:

    global:
      lightspeed:
        secret:
          create: false
          name: "my-custom-secret"
  3. Optional: To protect configuration files like lightspeed-stack.yaml, config.yaml, or rhdh-profile.py from being overwritten during updates, you must use a custom ConfigMap:

    Important

    You must only modify the create and nameOverride fields. Keep the default mount paths and file configurations unchanged.

    global:
      lightspeed:
        configMaps:
          - name: stack
            create: false
            nameOverride: "my-custom-stack"
            mountPath: /app-root/lightspeed-stack.yaml
            subPath: lightspeed-stack.yaml
            sourceFile: lightspeed-stack.yaml
            optional: false
  4. Configure access rights by updating your RBAC definitions:

    To grant non-administrator teams access to the virtual assistant, append permission lines to the rbac-policies.csv section, replacing <team> with your target team name:

p, role:default/<team>, lightspeed.chat.read, read, allow
p, role:default/<team>, lightspeed.chat.create, create, allow
  1. Run the helm upgrade command to apply your configurations to the cluster.

Verification

  1. Log in to your console instance.
  2. Verify that the Open Lightspeed floating action button (FAB) appears on the home page.
  3. Select the FAB and confirm that the chat window initializes successfully.

4.3. Mirror Developer Lightspeed for RHDH images for air-gapped environments

To provide chat assistance in a network environment without internet access, you must mirror the required Developer Lightspeed for RHDH container images to your local registry in addition to the standard Developer Hub images.

This action ensures your secure environment can pull the necessary images inside your network perimeter.

You must mirror the following Developer Lightspeed for RHDH images: * The Lightspeed Core Service(LCORE) sidecar container * The initialization container for retrieval-augmented generation (RAG) data

Prerequisites

  • You have a target mirror registry accessible to your disconnected cluster.
  • You authenticated to the Red Hat Container Registry and your target mirror registry.
  • You updated the cluster install secret (the 'pull-secret' in the 'openshift-config' namespace) to include the authentication credentials to your mirror registry. The kubelet requires these credentials to pull the sidecar images when starting up the RHDH pod.

Procedure

  1. Extract or identify the image digests for the Developer Lightspeed for RHDH sidecar and initialization container images.
  2. Mirror the images directly to your internal mirror registry by running the skopeo copy command:

5. Customize Developer Lightspeed for RHDH AI responses

You can customize Developer Lightspeed for RHDH to align model behavior with your operational goals, enhance developer productivity, and ensure secure data retention.

Customize Developer Lightspeed for RHDH by enabling user feedback, persisting chat history, and configuring Model Context Protocol (MCP) tools.

5.1. Enable user feedback to improve model performance

Enable user feedback collection to allow users to rate chat responses and submit text comments directly within the console interface.

The Lightspeed Core Service (LCORE) stores this data as JSON files inside your cluster. Because Red Hat does not collect or access this data, platform administrators must manage, analyze, and delete these files locally.

Prerequisites

  • You have platform administrator privileges.
  • You created and referenced a custom config map in your deployment to ensure configuration changes persist during system upgrades or Operator reconciliation loops. For more information, see link:Provision your custom Red Hat Developer Hub configuration.

Procedure

  1. Open your custom configuration file, such as lightspeed-stack.yaml.
  2. Modify the user_data_collection block to configure your data preferences:

    • To enable feedback collection, set the feedback_enabled parameter to true:

      user_data_collection:
        feedback_enabled: true
        feedback_storage: "/tmp/data/feedback"
        transcripts_enabled: true
        transcripts_storage: "/tmp/data/transcripts"
    • To disable feedback collection, set the feedback_enabled parameter to false:

      user_data_collection:
        feedback_enabled: false
        feedback_storage: "/tmp/data/feedback"
        transcripts_enabled: true
        transcripts_storage: "/tmp/data/transcripts"
Note

Do not modify the feedback_storage or transcripts_storage data paths when disabling feedback. Altering these path strings prevents the service from locating existing historical logs.

  1. Apply the updated configuration file changes to your cluster by running your platform’s standard deployment or upgrade sequence.

5.2. Customize AI responses by using system prompts

Configure a custom system prompt to provide environmental context to the large language model (LLM). This custom instruction prefixes user queries, guiding the assistant to generate artificial intelligence (AI) responses tailored to your RHDH instance.

Prerequisites

  • You have administrative access to the RHDH host platform filesystem.

Procedure

  1. Open your RHDH configuration file, typically named app-config.yaml.
  2. Add or modify the systemPrompt parameter under the lightspeed section, specifying your custom instruction string:

    lightspeed:
      # ... other lightspeed configurations
      systemPrompt: "You are a helpful assistant focused on Red Hat Developer Hub development."
  3. Save the file.
  4. Restart the RHDH service to apply the updated system prompt configuration.

5.3. Customize chat history storage

Configure chat history storage to choose between non-persistent local logs and a persistent external database for user conversations.

By default, the system stores chat history in a non-persistent local database within the Lightspeed Core Service (LCORE) container. To retain data across system restarts, you must configure a PostgreSQL database connection.

Warning

Storing chat history records user prompts and responses. You must assess data privacy and security implications if your user chat history contains private, sensitive, or confidential information. For users that want to have their chat data removed, they must request their platform administrator to perform this action. Red Hat does not collect or access this chat history data.

Prerequisites

Procedure

  1. Open your custom configuration file, typically named lightspeed-stack.yaml.
  2. Modify the conversation_cache block to specify your storage configuration:

    • To enable persistent storage, add your PostgreSQL database credentials and endpoint properties:

      conversation_cache:
        type: "postgres"
        postgres:
          host: _<your_database_host>_
          port: _<your_database_port>_
          db: _<your_database_name>_
          user: _<your_user_name>"_
          password: _<postgres_password>_
      • To retain the default non-persistent SQLite setup, verify that the parameters match the following paths:

        conversation_cache:
          type: "sqlite"
          sqlite:
            db_path: '/tmp/cache.db'
  3. Restart the LCORE service to apply your new database configuration.

5.4. Enable secure AI research with Developer Lightspeed Notebooks

Configure Red Hat Developer Hub and Red Hat Developer Lightspeed for Red Hat Developer Hub to provide users with private, document-based AI workspaces.

Prerequisites

  • A deployed instance of RHDH.
  • By using the OpenShift CLI (oc), you have access, with developer permissions, to the OpenShift Container Platform cluster aimed at containing your Developer Hub instance.
  • A Lightspeed Stack service is running and accessible to the backend.
  • A supported large language model (LLM), such as Granite 7B or higher, is available.

Procedure

  1. Enable the notebook feature and define your model by adding the following configuration to your app-config.yaml file:

    lightspeed:
      notebooks:
        enabled: true
        queryDefaults:
          model: ${NOTEBOOKS_QUERY_MODEL} # Use the exact model name
          provider_id: ${NOTEBOOKS_QUERY_PROVIDER_ID}
    Note

    If the model name is incorrect, an error message appears in the logs and the user interface.

  2. Grant user access through role-based access control (RBAC) policies by defining permissions in your rbac-policy-csv file:

    1. Add the permission policy:

      p, role:default/_<your_team_name>_, lightspeed.notebooks.use, update, allow
    2. Assign the role to specific users:

      g, user:default/_<your_user_name>_, role:default/_<your_team_name>_
  3. Apply the updated configuration and restart the service.

Verification

  1. Log in to RHDH using an account assigned to the RBAC role defined in the configuration.
  2. Confirm that the Notebooks tab is visible next to the Chat tab in the primary navigation bar.
  3. Click the Notebooks tab and ensure the My Notebooks dashboard loads without error messages.

6. Solve project-specific challenges with Developer Lightspeed for RHDH Notebooks

Use Developer Lightspeed for RHDH Notebooks to research, troubleshoot, and analyze projects by using a large language model (LLM) grounded in your own documentation. Notebooks use Retrieval-Augmented Generation (RAG) to ensure that responses are based strictly on the files you upload.

Use Notebooks to achieve the following goals:

Query your documentation
Upload project files to ask questions, summarize content, or brainstorm ideas based on those specific documents.
Troubleshoot with project-specific context
Upload project logs, architecture diagrams, or onboarding files to receive technical answers tailored to your specific environment.
Securely analyze private data
Conduct research in isolated sessions. Your uploaded data and chat history remain private and are inaccessible to other users.
Run multiple Notebooks
Uploaded documents and chat history remain available and are re-opened through the Notebook dashboard.
Verify AI responses with citations
Use the Sources chips to view the exact document excerpts used to generate an answer.
Organize research
Use metadata and tagging to categorize different research topics.

The following constraints apply during the Developer Preview:

Data boundaries
The AI can only access data within the active Notebook session.
Private access
You cannot share notebooks or documents with other team members.
Manual uploads
You must upload files directly. The tool does not support URL ingestion or web scraping.
Ephemeral defaults
Without a configured Persistent Volume (PV), all Notebook data and uploaded files are lost upon service restart.
Important

Developer Preview features are not supported by Red Hat in any way and are not functionally complete or production-ready. Do not use Developer Preview features for production or business-critical workloads. Developer Preview features provide early access to functionality in advance of possible inclusion in a Red Hat product offering. Customers can use these features to test functionality and provide feedback during the development process. Developer Preview features might not have any documentation, are subject to change or removal at any time, and have received limited testing. Red Hat might provide ways to submit feedback on Developer Preview features without an associated SLA.

For more information about the support scope of Red Hat Developer Preview features, see Developer Preview Support Scope.

6.1. Enable secure AI research with Developer Lightspeed Notebooks

Configure Red Hat Developer Hub and Red Hat Developer Lightspeed for Red Hat Developer Hub to provide users with private, document-based AI workspaces.

Prerequisites

  • A deployed instance of RHDH.
  • By using the OpenShift CLI (oc), you have access, with developer permissions, to the OpenShift Container Platform cluster aimed at containing your Developer Hub instance.
  • A Lightspeed Stack service is running and accessible to the backend.
  • A supported large language model (LLM), such as Granite 7B or higher, is available.

Procedure

  1. Enable the notebook feature and define your model by adding the following configuration to your app-config.yaml file:

    lightspeed:
      notebooks:
        enabled: true
        queryDefaults:
          model: ${NOTEBOOKS_QUERY_MODEL} # Use the exact model name
          provider_id: ${NOTEBOOKS_QUERY_PROVIDER_ID}
    Note

    If the model name is incorrect, an error message appears in the logs and the user interface.

  2. Grant user access through role-based access control (RBAC) policies by defining permissions in your rbac-policy-csv file:

    1. Add the permission policy:

      p, role:default/_<your_team_name>_, lightspeed.notebooks.use, update, allow
    2. Assign the role to specific users:

      g, user:default/_<your_user_name>_, role:default/_<your_team_name>_
  3. Apply the updated configuration and restart the service.

Verification

  1. Log in to RHDH using an account assigned to the RBAC role defined in the configuration.
  2. Confirm that the Notebooks tab is visible next to the Chat tab in the primary navigation bar.
  3. Click the Notebooks tab and ensure the My Notebooks dashboard loads without error messages.

6.2. Enable data persistence for Developer Lightspeed Notebooks

To persist Notebook sessions, documents, and AI history across service restarts, you must configure the Notebooks storage backends to use persistent volumes.

By default, the service uses ephemeral storage in the /tmp directory, which the system clears during a pod restart.

Prerequisites

  • By using the OpenShift CLI (oc), you have access, with developer permissions, to the OpenShift Container Platform cluster aimed at containing your Developer Hub instance.
  • You have authored and provisioned a custom config map for your deployment. For more information, see link:Provision your custom Red Hat Developer Hub configuration.
  • A Persistent Volume Claim (PVC) is provisioned in your cluster and mounted to the LCORE container (for example, at /var/lib/lightspeed-data).

Procedure

  1. Update your custom config map llama-stack-configs/config.yaml file to point the kv_notebooks storage backend to your persistent mount point:

    spec:
      initContainers:
        - name: init-notebooks-dir
          # ... complete init container
      containers:
        - name: lightspeed-core
          image: quay.io/lightspeed-core/lightspeed-stack:0.5.1
          ports:
            - containerPort: 8080
          volumeMounts:
            - name: notebooks-storage
              mountPath: /var/lib/lightspeed-data
            - name: config  # ← Added all ConfigMap mounts
              mountPath: /app-root/config.yaml
              subPath: config.yaml
            - name: lightspeed-config
              mountPath: /app-root/lightspeed-stack.yaml
              subPath: lightspeed-stack.yaml
            - name: profile
              mountPath: /app-root/rhdh-profile.py
              subPath: rhdh-profile.py
          livenessProbe:  # ← Added health checks
            httpGet:
              path: /readiness
              port: 8080
          readinessProbe:
            httpGet:
              path: /readiness
              port: 8080
      volumes:  # ← Added all volume definitions
        - name: notebooks-storage
          persistentVolumeClaim:
            claimName: lightspeed-notebooks-pvc
        - name: config
          configMap:
            name: llama-stack-config
        - name: lightspeed-config
          configMap:
            name: lightspeed-core-config
        - name: profile
          configMap:
            name: rhdh-profile
  2. Update your deployment manifest to include the init container, volume mounts, and volume definitions:

    spec:
      template:
        spec:
          initContainers:
            - name: init-notebooks-storage
              image: registry.access.redhat.com/ubi9/ubi-minimal
              command: ["sh", "-c", "mkdir -p /var/lib/lightspeed-data/notebooks && chmod -R 777 /var/lib/lightspeed-data/notebooks"]
              volumeMounts:
                - name: lightspeed-notebooks
                  mountPath: /var/lib/lightspeed-data
          containers:
            - name: lightspeed-stack
              image: quay.io/lightspeed-core/lightspeed-stack:0.5.1
              ports:
                - containerPort: 8080
              volumeMounts:
                - name: lightspeed-notebooks
                  mountPath: /var/lib/lightspeed-data
                - name: config
                  mountPath: /app-root/config.yaml
                  subPath: config.yaml
              livenessProbe:
                httpGet:
                  path: /readiness
                  port: 8080
              readinessProbe:
                httpGet:
                  path: /readiness
                  port: 8080
          volumes:
            - name: lightspeed-notebooks
              persistentVolumeClaim:
                claimName: lightspeed-notebooks-pvc
            - name: config
              configMap:
                name: llama-stack-config
  3. Apply the updated configuration and restart the service.

Verification

  1. In Red Hat Developer Hub, create a Notebook and upload a test document.
  2. Send a message to the virtual assistant and verify that the response is based on the document.
  3. Restart the pod:

    $ oc delete pod <pod_name>
  4. After the pod recovers, refresh the My Notebooks dashboard.
  5. Verify that the Notebook and the uploaded file are still accessible.

7. Get AI-assisted help for your development tasks

Use Red Hat Developer Lightspeed for Red Hat Developer Hub, a generative AI assistant in Red Hat Developer Hub (RHDH), to ask platform questions, analyze logs, generate code, and create test plans from a chat interface.

7.1. Prerequisites

  • Your platform engineer has configured the Developer Lightspeed for RHDH service in your RHDH instance.

7.2. Configure safety guards in Red Hat Developer Hub

To protect users from insecure or harmful AI model outputs, Red Hat Developer Hub (RHDH) uses Llama Guard as a default safety shield. You must configure these guards to align with your organization’s security policies.

Default safety guard configuration
The system uses Llama Guard as the default safety shield. Override these settings in the run.yaml file.
Note

The external_providers_dir parameter defaults to null and is no longer required in your configuration.

Overriding safety guards
To implement custom security layers or different safety shields, you must define a new safety provider within a custom run.yaml file.
Disabling safety guards
To run RHDH without safety guards, you must use the run-no-guard.yaml configuration file.
Important

Running without safety guards increases the risk of invalid model output. Only use this configuration in secure development environments.

Applying the no-guard configuration
To run the system without a safety guard, perform these steps:

Procedure

  1. Add the following YAML file as a config map to your namespace:

    version: 2
    image_name: redhat-ai-dev-llama-stack-no-guard
    apis:
      - agents
      - inference
      - safety
      - tool_runtime
      - vector_io
      - files
    container_image:
    external_providers_dir:
    providers:
      agents:
        - config:
            persistence:
              agent_state:
                namespace: agents
                backend: kv_default
              responses:
                table_name: responses
                backend: sql_default
          provider_id: meta-reference
          provider_type: inline::meta-reference
      inference:
        - provider_id: ${env.ENABLE_VLLM:+vllm}
          provider_type: remote::vllm
          config:
            url: ${env.VLLM_URL:=}
            api_token: ${env.VLLM_API_KEY:=}
            max_tokens: ${env.VLLM_MAX_TOKENS:=4096}
            tls_verify: ${env.VLLM_TLS_VERIFY:=true}
        - provider_id: ${env.ENABLE_OLLAMA:+ollama}
          provider_type: remote::ollama
          config:
            url: ${env.OLLAMA_URL:=http://localhost:11434}
        - provider_id: ${env.ENABLE_OPENAI:+openai}
          provider_type: remote::openai
          config:
            api_key: ${env.OPENAI_API_KEY:=}
        - provider_id: ${env.ENABLE_VERTEX_AI:+vertexai}
          provider_type: remote::vertexai
          config:
            project: ${env.VERTEX_AI_PROJECT:=}
            location: ${env.VERTEX_AI_LOCATION:=us-central1}
        - provider_id: sentence-transformers
          provider_type: inline::sentence-transformers
          config: {}
      tool_runtime:
        - provider_id: model-context-protocol
          provider_type: remote::model-context-protocol
          config: {}
        - provider_id: rag-runtime
          provider_type: inline::rag-runtime
          config: {}
      vector_io:
        - provider_id: faiss
          provider_type: inline::faiss
          config:
            persistence:
              namespace: vector_io::faiss
              backend: faiss_kv
      files:
        - provider_id: localfs
          provider_type: inline::localfs
          config:
            storage_dir: /tmp/llama-stack-files
            metadata_store:
              table_name: files_metadata
              backend: sql_files
    storage:
      backends:
        kv_default:
          type: kv_sqlite
          db_path: /tmp/kvstore.db
        sql_default:
          type: sql_sqlite
          db_path: /tmp/sql_store.db
        sql_files:
          type: sql_sqlite
          db_path: /rag-content/vector_db/rhdh_product_docs/1.9/files_metadata.db
        faiss_kv:
          type: kv_sqlite
          db_path: /rag-content/vector_db/rhdh_product_docs/1.9/faiss_store.db
      stores:
        metadata:
          namespace: registry
          backend: faiss_kv
        inference:
          table_name: inference_store
          backend: sql_default
          max_write_queue_size: 10000
          num_writers: 4
        conversations:
          table_name: openai_conversations
          backend: sql_default
    registered_resources:
      models:
        - model_id: sentence-transformers/all-mpnet-base-v2
          metadata:
            embedding_dimension: 768
          model_type: embedding
          provider_id: sentence-transformers
          provider_model_id: /rag-content/embeddings_model
      tool_groups:
        - provider_id: rag-runtime
          toolgroup_id: builtin::rag
      vector_dbs:
        - vector_db_id: rhdh-product-docs-1_8
          embedding_model: sentence-transformers/all-mpnet-base-v2
          embedding_dimension: 768
          provider_id: faiss
    server:
      auth:
      host:
      port: 8321
      quota:
      tls_cafile:
      tls_certfile:
      tls_keyfile:
  2. Mount the config map to your Llama Stack container at /app-root/run.yaml to make sure it overrides the default image file:

    name: llama-stack
    volumeMounts:
    - mountPath: /app-root/run.yaml
      subPath: run.yaml
      name: llama-stack-config
  3. Configure the required volume:

    volumes:
    - name: llama-stack-config
      configMap:
        name: llama-stack-config

    where:

    llama-stack-config
    The config map where you added the new no-guard configuration file.
  4. Restart the deployment if it does not trigger an automatic rollout.

7.3. Best results for assistant queries

To resolve technical blockers and accelerate development tasks, you must structure your queries to give specific context to the AI assistant. Using precise prompts makes sure that Developer Lightspeed for RHDH generates relevant code snippets, architectural advice, or platform-specific instructions.

Use the following strategies to improve the accuracy of the assistant’s output during your development workflow:

Specify technologies
Instead of asking "How do I use templates?", ask "How do I create a Software Template that scaffolds a Node.js service with a CI/CD pipeline".
Give context
Include details about your environment, such as "I am deploying to OpenShift; how do I set up my catalog-info.yaml to show pod health?".
Use conversation context
Ask follow-up questions to refine an earlier answer. For example, if the assistant gives a code snippet, you can ask "Now rewrite that using TypeScript interfaces."
Validate with citations
Check the provided documentation links and citations in the response to verify that the generated advice aligns with your organization’s official standards.
Improve assistant accuracy
Rate the utility of responses by selecting the Thumbs up or Thumbs down icons. This feedback helps tune the model for your organization’s specific requirements.
Important

To keep your data secure, do not include sensitive personal information, plain text credentials, or confidential business data in your queries.

7.4. AI response monitoring and context management

Developer Lightspeed for RHDH provides features to track the AI reasoning process and keep the context of your development tasks.

Thinking cards
An expandable thinking card is displayed while the AI processes a query. A pulse animation indicates the reasoning phase. You can expand the card to view detailed reasoning or collapse it to minimize screen clutter.
Tool call transparency
An expandable card displays details for Model Context Protocol (MCP) tool calls, which you can use to monitor background processes.
Context-aware citations
Retrieval-Augmented Generation (RAG) citations appear only when the AI uses internal documentation. This makes sure that general knowledge responses remain concise.
Context preservation during model changes
When you select a different AI model, Developer Lightspeed for RHDH starts a new conversation. This keeps your earlier chats available in your history.
Structural readability
The interface formats headings and bullet points automatically to make sure responses are scannable.

7.5. Manage chats

Manage your chat history and configuration in RHDH to organize your workspace, resume earlier tasks, or find past solutions.

Chat options menu

Prerequisites

  • You have configured the Developer Lightspeed for RHDH plugin in Red Hat Developer Hub.
  • You have logged in to the portal.

Procedure

  1. Click the Open Lightspeed floating action button (FAB) at the lower right of the screen to open the chat overlay.
  2. Optional: Configure the interface display and server settings:

    • Click the Chatbot options icon (⋮) to view chat history or start a new chat.
    • Click the Display mode icon and select any of the following views:

      Display menu options
      • Overlay: A floating window is displayed over the current page content.

        Lightspeed overlay mode
      • Dock to window: A panel attaches to the right side of the screen. Activating this mode automatically closes the quick start panel if it is already open.

        Lightspeed docked mode
      • Fullscreen: A dedicated page opens for intensive chat sessions. You can bookmark this URL for direct access.

        Lightspeed full-screen mode
      • Optional: Toggle Enable pinned chats/Disable pinned chats to enable or hide the pinned chats. The system enables this option by default.
      • Available only if MCP is configured: MCP settings: Manage Model Context Protocol connections.
  3. Start a chat or load an earlier session:

    • Enter a prompt: Type a query in the Enter a prompt for Lightspeed chat field and press Enter.
    • Use a sample: Click a prompt tile.
    • Attach a file: Click Attach to upload a .yaml, .json, or .txt file.

      1. Click the file name to open the preview model.
      2. View or edit the content of the file:

        Lightspeed file attachment preview
    • Use voice: Click the Use microphone icon.
    • Resume a chat: Select a title from the Recent list.
  4. Organize your chat history:

    • Start a new topic: Click New chat to reset the assistant’s context.
    • Search history: Enter a keyword in the Search field.
    • Rename a session: Click Options next to a chat title, select Rename, and enter a new name.

      Rename chat option
    • Pin a chat:: Click Options next to a chat title and select Pin. The chat moves to the Pinned group.
    • Sort chats:: Click Sort control and choose a sorting criteria, such as Date (Newest first).

      Chat sorting options
    • Delete a chat: Click Options next to a chat title and select Delete.

      Delete chat option
    • Hide the chat history section and reduce visual noise: Select the Close icon (x) next to New chat.
    • Restore access to your pinned chat: Select the Chat history menu icon.
  5. Optional: To hide the interface, if you are in the Overlay or Dock to window mode, click the Close Lightspeed icon (X) to hide the window. If you are in Fullscreen mode, revert to the other modes and click the Close Lightspeed icon (X). The system preserves your active query and history.
  6. Optional: In Fullscreen mode, bookmark the URL in your browser to save a direct link to the chat interface.

Verification

  1. The main window displays the active chat or selected history.
  2. The chat history list reflects renamed, pinned, or deleted entries.

7.6. Build a private knowledge base with Developer Lightspeed for RHDH Notebooks

Use Developer Lightspeed for RHDH notebooks to create isolated research environments. These workspaces allow you to analyze project data securely by using a large language model (LLM) grounded in your specific documentation.

Important

Developer Preview features are not supported by Red Hat in any way and are not functionally complete or production-ready. Do not use Developer Preview features for production or business-critical workloads. Developer Preview features provide early access to functionality in advance of possible inclusion in a Red Hat product offering. Customers can use these features to test functionality and provide feedback during the development process. Developer Preview features might not have any documentation, are subject to change or removal at any time, and have received limited testing. Red Hat might provide ways to submit feedback on Developer Preview features without an associated SLA.

For more information about the support scope of Red Hat Developer Preview features, see Developer Preview Support Scope.

7.6.1. Create isolated research workspaces

Organize your work into individual notebook sessions to keep research topics separate and private.

Procedure

  1. In the RHDH interface, click the Open Lightspeed floating action button (FAB).
  2. In your Developer Lightspeed page, select the Notebooks tab.
  3. Click Create a new notebook to start a new workspace.
  4. Optional: To manage your workspaces, click the More options icon on a notebook card to Rename, Delete, or add Tags to the session.

Verification

  • Confirm the new notebook card appears on the My Notebooks dashboard.

7.6.2. Provide project context to the AI

To receive answers tailored to your project, upload relevant source material to your active session.

Procedure

  1. Open a Notebook card from the dashboard.
  2. Add resources by using one of the following methods:

    • In the sidebar, click the Add (+) icon.
    • In the main user interface, click Upload a resource.
  3. Select your sources:

    Local files
    Upload .txt, .md, .pdf, .docx, .log, .yaml, or .json files.
    Web content
    Enter a URL to ingest web-based content.
  4. Adhere to the following constraints:

    File size
    Individual files or URL content must be 20MB or smaller.
    Notebook Capacity
    The total token count per session must not exceed 100k.
    Unsupported content
    Avoid scanned PDF images without text, audio, video, and general image files.
    Persistence requirement
    The internal SQL and KV stores must be mapped to a persistent backend to maintain the 100k token context across sessions.
  5. Wait for the system to process and vectorize the files. This might take several seconds for larger PDFs.

Verification

  • Ensure the uploaded files appear in the Resources list in the sidebar with a Processed status.

7.6.3. Extract and verify document-based insights

After providing context, use the AI to perform reasoning across your files and verify the accuracy of the responses.

Prerequisites

  • You have uploaded documents or URLs to the active chat session to establish context.

    Note

    If no documents are uploaded, you cannot communicate with the AI.

    Procedure

    1. Enter a question in the prompt bar at the bottom of the screen.
    2. Analyze the response. The AI identifies relationships across all uploaded documents and URLs in the session.
    3. To verify accuracy, click the Sources chip to view the specific document excerpts used to generate the answer.
    4. Manage your workflow by using the history panel in the sidebar to expand or collapse previous interactions.

Verification

  • Confirm that the Sources panel displays the correct filenames and text snippets corresponding to the AI’s response.

8. AI model evaluation data to select the right AI model

Use the Red Hat Developer Lightspeed for Red Hat Developer Hub evaluation framework to validate the performance, accuracy, and reliability of Developer Lightspeed for RHDH.

With this automated toolset, you can measure how effectively various large language models (LLMs) answer questions based on Red Hat Developer Hub documentation.

Table 1. Components of the evaluation framework

ComponentDescription

Evaluation framework

Contains the core logic and scripts used to run evaluations.

Datasets

Includes the input files used to test the model.

Evaluation metrics integration

Provides scoring through various metrics, including Ragas, DeepEval, and custom metrics. Ragas is the primary metric used to validate Developer Lightspeed for RHDH performance.

8.1. Configure the evaluation environment to validate model accuracy

Set up the evaluation environment to validate the performance and accuracy of Developer Lightspeed for RHDH. Configure this evaluation to ensure the model correctly interprets documentation and provides dependable answers.

By performing these evaluations, you minimize the risk of the model delivering incorrect or hallucinated information to users in production.

Prerequisites

  • Install uv for Python package management (Python 3.11 or later).

Procedure

  1. Clone the evaluation repository and navigate to the directory:

    git clone https://github.com/lightspeed-core/lightspeed-evaluation
    cd lightspeed-evaluation
  2. Synchronize the environment and install dependencies:

    uv sync
  3. Configure the environment variables for the judge LLM. You can create a .env file in the root directory or export the keys directly to your terminal.

    • If you use Gemini, you must set the Gemini API key:

      export GEMINI_API_KEY="your-google-api-key"
    • If you use OpenAI, you must set the OpenAI API key:

      export OPENAI_API_KEY="your-key"
  4. Optional: If you test with a live service, set your Developer Lightspeed for RHDH service API key:

    export API_KEY="your-lightspeed-service-key"

Verification

  • Verify that the environment is synchronized and the virtual environment is active:

    uv run python --version

    The output must return Python 3.11 or later.

8.2. Prepare evaluation datasets to verify AI-generated responses

Prepare evaluation datasets to test the performance of Developer Lightspeed for RHDH. You can use pre-generated AI datasets for specific Red Hat Developer Hub releases or generate custom AI datasets from your own documentation.

Prerequisites

  • You must clone the evaluation repository to your local machine.

Procedure

  1. Download pre-generated datasets: Use this method to test the performance of specific RHDH releases. These datasets are generated using Ragas testset generation for RAG.

    1. In your terminal, navigate to the /dataset folder in the evaluation repository.
    2. Locate the .evaluation_dataset_yaml files. These files are pre-configured for the evaluation tool.
    3. To test a historical release, switch to the corresponding branch.

      For example, to access the Red Hat Developer Hub 1.8 dataset, switch to the 1.8 branch.

      Important

      The main branch contains work-in-progress (WIP) datasets. Avoid using this branch for stable evaluations.

  2. Generate custom datasets: Use this method to create a new test set from your own technical documentation.

    1. Generate a diverse set of question-and-answer (Q&A) pairs by following the Ragas test data generation documentation.
    2. Ensure your Q&A pairs match the required format by reviewing the evaluation data structure configuration.

Verification

  • Verify that your custom dataset matches the required schema before you start the evaluation run.

8.3. Run performance tests to ensure AI response reliability

Use the evaluation framework to run performance tests in either static mode to evaluate pre-recorded responses or dynamic mode to call a live service.

These evaluations identify performance gaps, allow you to compare different large language models (LLMs), and ensure that Developer Lightspeed for RHDH provides reliable information to users.

Prerequisites

Procedure

  1. Download the system.yaml configuration template from the repository.
  2. Configure the parameters in the system.yaml file based on your evaluation mode:

    FieldDescription

    llm

    Defines the judge LLM that scores the responses, such as gemini-2.5-pro.

    api.enabled

    Set to false for static mode to use pre-filled data. Set to true for dynamic mode to call a live service.

    api.api_base

    (Required for dynamic mode only) Provide the URL of your Developer Lightspeed for RHDH service.

    api.endpoint_type

    Specify the service configuration type: streaming or query.

  3. Execute the evaluation by using the lightspeed-eval command:

    lightspeed-eval \
      --system-config config/system.yaml \
      --eval-data config/evaluation_data.yaml \
      --output-dir ./my_evaluation_results

Verification

  • Navigate to the specified output directory and verify that the generated reports contain the model performance scores.

8.4. Analyze evaluation results to identify performance gaps

Determine the performance of Developer Lightspeed for RHDH and identify documentation areas that require model improvement by analyzing evaluation results in the repository. You can use these reports to compare performance across different large language models (LLMs) and topics.

Prerequisites

Procedure

  1. In the root of the repository, navigate to the version-specific folder within the /evaluation-result directory.
  2. Open the following files to evaluate performance:

    • Model Pass Rate: Compare the overall performance between different LLMs.
    • Topic Pass Rate: Identify performance trends and gaps within specific documentation areas.

Verification

  • Verify that the reports display data visualizations or metrics consistent with your recent evaluation run.

8.5. Evaluation metrics and historical data reference

Use the available metrics to evaluate the performance of Developer Lightspeed for RHDH at the conversation turn level.

These metrics provide a standardized way to measure the accuracy and reliability of the generated responses and the retrieved content.

MetricDescription

Faithfulness

Measures how well the answer is derived solely from the retrieved context.

Context recall

Measures whether the retrieved context contains all information required to answer the question.

Context relevance

Verifies if the retrieved documentation chunks are relevant to the user query.

Context precision without reference

Measures the ratio of useful information within the retrieved documentation chunks.

Answer correctness

Compares the generated response against the expected ground-truth response. This custom metric is implemented in the evaluation tool.

8.6. Release report and historical data

Use the latest Q&A dataset and evaluation results to monitor the current performance of Developer Lightspeed for RHDH.

Access version-specific branches that contain the datasets and evaluation results required to track improvements or regressions across product releases.

Important

The main branch contains work-in-progress data for versions currently under development. For stable evaluations or historical tracking, you must switch to the branch associated with a specific release.

Release versionBranch nameData included

Latest stable

Most recent version branch

The current question and answer (Q&A) dataset and evaluation results.

Historical

Previous version branches

Datasets and evaluation results for previous releases to track regressions.

9. Appendix: LLM requirements

Review large language model (LLM) provider compatibility and system requirements for OpenAI, Red Hat OpenShift AI, Ollama, vLLM, and Vertex AI to plan your Developer Lightspeed for RHDH infrastructure deployment.

9.1. Large language model (LLM) requirements

To plan your Developer Lightspeed for RHDH deployment, you must determine which compatible large language model (LLM) inference provider fits your infrastructure.

Developer Lightspeed for RHDH operates on a Bring Your Own Model (BYOM) architecture. Because the service does not include a native model, you must connect a compatible inference provider during installation.

The underlying LCORE service integrates with platforms that support the OpenAI API specification or utilize the vLLM inference engine. Because there is no explicit Red Hat OpenShift AI provider option in the configuration, you must route those deployments through the vLLM or OpenAI-compatible provider settings.

The vllm provider type communicates with endpoints that conform to the OpenAI API schema by automatically appending /v1 to the configured provider URL. This mechanism allows you to use the vllm configuration for other hosted, OpenAI-compliant inference providers.

Developer Lightspeed for RHDH supports the following inference provider configurations:

  • OpenAI cloud-based inference services
  • vLLM enterprise inference servers, which includes models hosted on Red Hat OpenShift AI and Red Hat Enterprise Linux AI
  • Ollama desktop inference servers
  • Gemini services through Vertex AI

9.2. OpenAI model integration for your deployment

Use OpenAI models to provide generative artificial intelligence (AI) inference services, such as GPT 5, for your Developer Lightspeed for RHDH deployment.

The system connects directly to the OpenAI API platform to route user prompts and return model insights. To configure this large language model (LLM) provider, you must have an active API key generated from your OpenAI developer account.

9.3. Ollama model integration requirements

To integrate the open-source Ollama framework with Developer Lightspeed for RHDH, you must ensure that your network topology allows the Developer Lightspeed for RHDH service to route traffic to the Ollama server endpoint.

The Ollama server operates as a containerized layer, providing a command-line interface (CLI) to download, manage, and execute open-source models such as Llama 3 and Mistral. You can deploy Ollama on both local workstations and cluster environments.

However, a cluster-deployed Developer Lightspeed for RHDH instance cannot access an Ollama server that runs exclusively on a workstation localhost interface. For cluster deployments, the Ollama server must reside on an externally accessible network perimeter or run directly inside the cluster.

The following integration configurations are supported: * Both Developer Lightspeed for RHDH and Ollama deploy on a local workstation. * Developer Lightspeed for RHDH deploys locally and connects to an externally accessible cluster Ollama server. * Both Developer Lightspeed for RHDH and Ollama deploy inside the cluster infrastructure.

9.4. vLLM model integration for high-throughput inference

Use the open-source vLLM high-throughput serving framework to optimize memory utilization and manage high volumes of concurrent requests for your Developer Lightspeed for RHDH deployment.

The vLLM framework operates as an enterprise inference server that optimizes memory allocation to maximize the processing efficiency of large language models (LLMs). Integrating vLLM ensures that your environment maintains high performance and responsiveness under heavy concurrent user traffic.

Additional resources

9.5. Vertex AI integration for Gemini models

To use Gemini models with Developer Lightspeed for RHDH, you can configure Google Cloud Vertex AI to act as your managed large language model (LLM) inference provider.

The underlying LCORE service connects to Vertex AI to access hosted Gemini models. This integration provides Developer Lightspeed for RHDH with enterprise-grade language processing and chat assistance capabilities without requiring you to maintain a local inference server.

Additional resources

10. Appendix: Manage user data security

Review data handling practices, feedback storage protocols, and model configuration architectures, such as the Bring Your Own Model approach, to evaluate and enforce information security standards for your organization.

10.1. Data use and privacy practices

Review data routing and privacy practices to evaluate how Developer Lightspeed for RHDH handles chat messages and operational information transmitted to large language model (LLM) providers.

Developer Lightspeed for RHDH sends your chat messages directly to your configured large language model (LLM) provider. Because these messages can contain sensitive operational data regarding your cluster, users, or business environment, ensure that your provider compliance policies align with your organizational security standards.

Developer Lightspeed for RHDH has limited capabilities to filter or redact the information you submit during user interactions. To mitigate data exposure risks, do not enter proprietary or confidential information into Developer Lightspeed for RHDH. To encourage user compliance, Developer Lightspeed for RHDH displays a mandatory warning at the start of each sessions, reminding users to omit personal or sensitive details.

10.2. User feedback collection

Review how Developer Lightspeed for RHDH collects and isolates user feedback data within your cluster to manage local storage requirements and data privacy standards.

Developer Lightspeed for RHDH saves user feedback submissions, including numerical ratings and text commentary, locally within the pod filesystem. Because Red Hat does not collect, access, or transmit this data, local platform administrators must manage and monitor these storage directories.

10.3. Bring Your Own Model integration

Review Bring Your Own Model (BYOM) requirements to select and integrate an OpenAI API-compatible inference service with Lightspeed Core Service.

Developer Lightspeed for RHDH relies on a BYOM architecture that let you connect the Lightspeed Core Service (LCORE) layer to any OpenAI API-compatible inference platforms. To establish connection compatibility, your chosen inference service must satisfy the following technical criteria:

  • The service must conform to the OpenAI API specification for chat completions.
  • The host environment must match the specified infrastructure configuration and installation instructions.

Various commercial and open-source inference services support the OpenAI API specification. Because operational costs, performance metrics, and data security controls vary by provider, you must evaluate and test prospective platforms locally to select the service that best meets your organizational requirements.

Additional resources

10.4. Your compliance and data-sharing responsibility

Review compliance requirements and data-sharing responsibilities to ensure that user interactions with Developer Lightspeed for RHDH align with your organization’s data privacy policies.

All data that users submit through prompts and responses within Developer Lightspeed for RHDH is transmitted directly to your configured large language model (LLM) inference service. Platform administrators must ensure that these external data transfers comply with corporate security standards, governance frameworks, and local data protection policies.

Legal Notice

Copyright © 2026 Red Hat, Inc.
The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/. In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version.
Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law.
Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries.
Linux® is the registered trademark of Linus Torvalds in the United States and other countries.
Java® is a registered trademark of Oracle and/or its affiliates.
XFS® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries.
MySQL® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
Node.js® is an official trademark of Joyent. Red Hat is not formally related to or endorsed by the official Joyent Node.js open source or commercial project.
The OpenStack® Word Mark and OpenStack logo are either registered trademarks/service marks or trademarks/service marks of the OpenStack Foundation, in the United States and other countries and are used with the OpenStack Foundation's permission. We are not affiliated with, endorsed or sponsored by the OpenStack Foundation, or the OpenStack community.
All other trademarks are the property of their respective owners.