mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
* perf: index * stop design doc * perf: stop workflow;perf: mongo connection * fix: ts * mq export
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import { OutLinkChatAuthSchema } from '../../../support/permission/chat/type';
|
|
import { ObjectIdSchema } from '../../../common/type/mongo';
|
|
import z from 'zod';
|
|
|
|
/* ============ v2/chat/stop ============ */
|
|
export const StopV2ChatSchema = z
|
|
.object({
|
|
appId: ObjectIdSchema.describe('应用ID'),
|
|
chatId: z.string().min(1).describe('对话ID'),
|
|
outLinkAuthData: OutLinkChatAuthSchema.optional().describe('外链鉴权数据')
|
|
})
|
|
.meta({
|
|
example: {
|
|
appId: '1234567890',
|
|
chatId: '1234567890',
|
|
outLinkAuthData: {
|
|
shareId: '1234567890',
|
|
outLinkUid: '1234567890'
|
|
}
|
|
}
|
|
});
|
|
export type StopV2ChatParams = z.infer<typeof StopV2ChatSchema>;
|
|
|
|
export const StopV2ChatResponseSchema = z
|
|
.object({
|
|
success: z.boolean().describe('是否成功停止')
|
|
})
|
|
.meta({
|
|
example: {
|
|
success: true
|
|
}
|
|
});
|
|
export type StopV2ChatResponse = z.infer<typeof StopV2ChatResponseSchema>;
|
|
|
|
/* ============ chat file ============ */
|
|
export const PresignChatFileGetUrlSchema = z
|
|
.object({
|
|
key: z.string().min(1).describe('文件key'),
|
|
appId: ObjectIdSchema.describe('应用ID'),
|
|
outLinkAuthData: OutLinkChatAuthSchema.optional().describe('外链鉴权数据')
|
|
})
|
|
.meta({
|
|
example: {
|
|
key: '1234567890',
|
|
appId: '1234567890',
|
|
outLinkAuthData: {
|
|
shareId: '1234567890',
|
|
outLinkUid: '1234567890'
|
|
}
|
|
}
|
|
});
|
|
export type PresignChatFileGetUrlParams = z.infer<typeof PresignChatFileGetUrlSchema>;
|
|
|
|
export const PresignChatFilePostUrlSchema = z
|
|
.object({
|
|
filename: z.string().min(1).describe('文件名'),
|
|
appId: ObjectIdSchema.describe('应用ID'),
|
|
chatId: z.string().min(1).describe('对话ID'),
|
|
outLinkAuthData: OutLinkChatAuthSchema.optional().describe('外链鉴权数据')
|
|
})
|
|
.meta({
|
|
example: {
|
|
filename: '1234567890',
|
|
appId: '1234567890',
|
|
chatId: '1234567890',
|
|
outLinkAuthData: {
|
|
shareId: '1234567890',
|
|
outLinkUid: '1234567890'
|
|
}
|
|
}
|
|
});
|
|
export type PresignChatFilePostUrlParams = z.infer<typeof PresignChatFilePostUrlSchema>;
|