UNPKG

@arizeai/phoenix-client

Version:
11 lines (8 loc) 325 B
import type { PromptModelProvider } from "../../types/prompts"; export const SUPPORTED_SDKS = ["openai", "anthropic", "ai"] as const; export const SUPPORTED_SDK_TO_PROMPT_MODEL_PROVIDER = { openai: "OPENAI", anthropic: "ANTHROPIC", } satisfies Partial< Record<(typeof SUPPORTED_SDKS)[number], PromptModelProvider> >;