Files
WebAI2API/src/server/index.js
T

20 lines
556 B
JavaScript

/**
* @fileoverview src/server 模块入口
* @description 导出服务器相关模块
*/
export { ERROR_CODES, getErrorMessage, getErrorStatus, getErrorDetails } from './errors.js';
export {
sendJson,
sendSse,
sendSseDone,
sendHeartbeat,
sendApiError,
buildChatCompletion,
buildChatCompletionChunk
} from './http/respond.js';
export { handleDisplayParams } from './display.js';
export { createQueueManager } from './queue.js';
export { parseRequest } from './parseChat.js';
export { createRouter } from './http/routes.js';