mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-17 21:10:54 +00:00
82 lines
2.4 KiB
TypeScript
82 lines
2.4 KiB
TypeScript
import { resolveRemoteEmbeddingBearerClient } from "./embeddings-remote-client.js";
|
|
import { fetchRemoteEmbeddingVectors } from "./embeddings-remote-fetch.js";
|
|
import type { EmbeddingProvider, EmbeddingProviderOptions } from "./embeddings.js";
|
|
|
|
export type VoyageEmbeddingClient = {
|
|
baseUrl: string;
|
|
headers: Record<string, string>;
|
|
model: string;
|
|
};
|
|
|
|
export const DEFAULT_VOYAGE_EMBEDDING_MODEL = "voyage-4-large";
|
|
const DEFAULT_VOYAGE_BASE_URL = "https://api.voyageai.com/v1";
|
|
const VOYAGE_MAX_INPUT_TOKENS: Record<string, number> = {
|
|
"voyage-3": 32000,
|
|
"voyage-3-lite": 16000,
|
|
"voyage-code-3": 32000,
|
|
};
|
|
|
|
export function normalizeVoyageModel(model: string): string {
|
|
const trimmed = model.trim();
|
|
if (!trimmed) {
|
|
return DEFAULT_VOYAGE_EMBEDDING_MODEL;
|
|
}
|
|
if (trimmed.startsWith("voyage/")) {
|
|
return trimmed.slice("voyage/".length);
|
|
}
|
|
return trimmed;
|
|
}
|
|
|
|
export async function createVoyageEmbeddingProvider(
|
|
options: EmbeddingProviderOptions,
|
|
): Promise<{ provider: EmbeddingProvider; client: VoyageEmbeddingClient }> {
|
|
const client = await resolveVoyageEmbeddingClient(options);
|
|
const url = `${client.baseUrl.replace(/\/$/, "")}/embeddings`;
|
|
|
|
const embed = async (input: string[], input_type?: "query" | "document"): Promise<number[][]> => {
|
|
if (input.length === 0) {
|
|
return [];
|
|
}
|
|
const body: { model: string; input: string[]; input_type?: "query" | "document" } = {
|
|
model: client.model,
|
|
input,
|
|
};
|
|
if (input_type) {
|
|
body.input_type = input_type;
|
|
}
|
|
|
|
return await fetchRemoteEmbeddingVectors({
|
|
url,
|
|
headers: client.headers,
|
|
body,
|
|
errorPrefix: "voyage embeddings failed",
|
|
});
|
|
};
|
|
|
|
return {
|
|
provider: {
|
|
id: "voyage",
|
|
model: client.model,
|
|
maxInputTokens: VOYAGE_MAX_INPUT_TOKENS[client.model],
|
|
embedQuery: async (text) => {
|
|
const [vec] = await embed([text], "query");
|
|
return vec ?? [];
|
|
},
|
|
embedBatch: async (texts) => embed(texts, "document"),
|
|
},
|
|
client,
|
|
};
|
|
}
|
|
|
|
export async function resolveVoyageEmbeddingClient(
|
|
options: EmbeddingProviderOptions,
|
|
): Promise<VoyageEmbeddingClient> {
|
|
const { baseUrl, headers } = await resolveRemoteEmbeddingBearerClient({
|
|
provider: "voyage",
|
|
options,
|
|
defaultBaseUrl: DEFAULT_VOYAGE_BASE_URL,
|
|
});
|
|
const model = normalizeVoyageModel(options.model);
|
|
return { baseUrl, headers, model };
|
|
}
|