@nomyx/assistant
Version:
A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)
12 lines (11 loc) • 453 B
JavaScript
;
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.OpenRouterProviderError('Embedding is not supported by OpenRouter API');
}
async function embedBatch(config, texts) {
throw new errors_1.OpenRouterProviderError('Batch embedding is not supported by OpenRouter API');
}