import { ExtendedIntegrationPluginId, Plugin } from '../../types/index.js'; import { getNativeOpenApiPlugin } from './shared/index.js'; export const CoherePlugin: Plugin = getNativeOpenApiPlugin({ name: 'Cohere', id: ExtendedIntegrationPluginId.COHERE, authMethods: { bearer: true }, serverURL: 'https://api.cohere.com/v1', isStreamable: true });