/** * API 统一导出入口 * 所有 API 服务都从这里导出,方便统一管理和使用 */ // HTTP 实例 export { default as http, default as request } from './http' // 认证相关 API export * from './auth' // 聊天相关 API export { ChatMessageApi } from './chat' // 用户提示词 API export { UserPromptApi } from './userPrompt' // 通用服务 API export { CommonService } from './common' export { default as CommonServiceDefault } from './common' // TikHub API export { TikhubService, default as TikhubServiceDefault } from './tikhub' export { InterfaceType, MethodType, InterfaceUrlMap, ParamType } from './tikhub/types'