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

    Tool for reading a specific cell from Datalayer notebooks. Implements VS Code's LanguageModelTool interface for Copilot integration.

    Implements

    • LanguageModelTool<IReadDatalayerCellParameters>
    Index

    Constructors

    Methods

    • Executes the tool - reads a specific cell from the notebook.

      Parameters

      • options: LanguageModelToolInvocationOptions<IReadDatalayerCellParameters>
      • _token: CancellationToken

      Returns Promise<LanguageModelToolResult>

    • Prepares the tool invocation with user-facing messages.

      Parameters

      • options: LanguageModelToolInvocationPrepareOptions<IReadDatalayerCellParameters>
      • _token: CancellationToken

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