Files
aiartstudio/shared/types/openai.ts
T
2026-04-25 15:42:48 +08:00

9 lines
159 B
TypeScript

export type BaseOptions = {
/** OpenAI API Key */
apiKey: string;
/** 模型名称 */
model: string;
/** 自定义 baseURL */
baseURL?: string;
};