feat: 封装一些函数,补充页面样式

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-25 15:42:48 +08:00
parent aa53691dc7
commit 7d1cc2da1a
18 changed files with 394 additions and 235 deletions
+8
View File
@@ -0,0 +1,8 @@
export type BaseOptions = {
/** OpenAI API Key */
apiKey: string;
/** 模型名称 */
model: string;
/** 自定义 baseURL */
baseURL?: string;
};