mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 20:32:20 +03:00
12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
export const SUPPORTED_BATCH_ENDPOINTS = [
|
|
"/v1/responses",
|
|
"/v1/chat/completions",
|
|
"/v1/embeddings",
|
|
"/v1/completions",
|
|
"/v1/moderations",
|
|
"/v1/images/generations",
|
|
"/v1/videos/generations",
|
|
] as const;
|
|
|
|
export type SupportedBatchEndpoint = (typeof SUPPORTED_BATCH_ENDPOINTS)[number];
|