/** * Mistral client implementation. * * Uses the proto-generated REST API Integration Plugin type from @superblocksteam/types. * Mistral integrations use the REST API Integration plugin under the hood. */ import { RestApiIntegrationClient } from "../base/index.js"; import type { MistralClient } from "./types.js"; /** * Internal implementation of MistralClient. * * Extends RestApiIntegrationClient to inherit the generic apiRequest() method. * This implementation communicates with the orchestrator to execute * Mistral API calls. At runtime, the orchestrator handles authentication * and API request execution. */ export class MistralClientImpl extends RestApiIntegrationClient implements MistralClient { // Inherits: name, pluginId, config, executeQuery, apiRequest() }