UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

12 lines (11 loc) 449 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.embed = embed; exports.embedBatch = embedBatch; const errors_1 = require("./errors"); async function embed(config, text) { throw new errors_1.AnthropicProviderError('Embedding is not supported by Anthropic API'); } async function embedBatch(config, texts) { throw new errors_1.AnthropicProviderError('Batch embedding is not supported by Anthropic API'); }