mirror of
https://github.com/fosrl/pangolin.git
synced 2026-08-21 19:52:47 +02:00
14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
export const AI_CAPABILITIES = [
|
|
"openai_chat",
|
|
"openai_responses",
|
|
"anthropic_messages",
|
|
"anthropic_models",
|
|
"gemini_generate_content",
|
|
"bedrock_model_invoke",
|
|
"google_generate_content",
|
|
"google_raw_predict",
|
|
"bedrock_converse"
|
|
] as const;
|
|
|
|
export type AiCapability = (typeof AI_CAPABILITIES)[number];
|