提示词保存

This commit is contained in:
2025-11-13 01:06:28 +08:00
parent fc7d2ccea5
commit c652d0ddf3
49 changed files with 4072 additions and 2452 deletions

View File

@@ -3,9 +3,6 @@
* 所有 API 服务都从这里导出,方便统一管理和使用
*/
// 配置
export { default as API_BASE, getApiUrl } from './config'
// HTTP 实例
export { default as http, default as request } from './http'
@@ -15,6 +12,9 @@ export * from './auth'
// 聊天相关 API
export { ChatMessageApi } from './chat'
// 用户提示词 API
export { UserPromptApi } from './userPrompt'
// 通用服务 API
export { CommonService } from './common'
export { default as CommonServiceDefault } from './common'
@@ -23,20 +23,3 @@ export { default as CommonServiceDefault } from './common'
export { TikhubService, default as TikhubServiceDefault } from './tikhub'
export { InterfaceType, MethodType, InterfaceUrlMap, ParamType } from './tikhub/types'
/**
* 统一导出所有 API 服务(便于按需导入)
*/
export default {
// 配置
config: () => import('./config'),
// HTTP 实例
http: () => import('./http'),
// API 服务
auth: () => import('./auth'),
chat: () => import('./chat'),
common: () => import('./common'),
tikhub: () => import('./tikhub'),
}