Datalayer VS Code Extension - v0.0.4
    Preparing search index...

    Tool for inserting cells into Datalayer custom editor notebooks. Implements VS Code's LanguageModelTool interface for Copilot integration.

    Implements

    • LanguageModelTool<IInsertDatalayerCellParameters>
    Index

    Constructors

    Methods

    • Executes the tool - inserts a cell into the active Datalayer notebook. ⚠️ ONLY works with Datalayer custom editor notebooks, NOT native VS Code notebooks.

      Parameters

      • options: LanguageModelToolInvocationOptions<IInsertDatalayerCellParameters>
      • _token: CancellationToken

      Returns Promise<LanguageModelToolResult>

    • Prepares the tool invocation with user-facing messages.

      Parameters

      • options: LanguageModelToolInvocationPrepareOptions<IInsertDatalayerCellParameters>
      • _token: CancellationToken

      Returns Promise<
          {
              confirmationMessages: { message: MarkdownString; title: string };
              invocationMessage: string;
          },
      >