mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
* chat log soft delete * perf: history api * add history test * Update packages/web/i18n/en/app.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * zod parse error * fix: ts --------- Co-authored-by: archer <545436317@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
18 lines
382 B
TypeScript
18 lines
382 B
TypeScript
import type { OutLinkChatAuthProps } from '../../support/permission/chat';
|
|
|
|
export type preUploadImgProps = OutLinkChatAuthProps & {
|
|
// expiredTime?: Date;
|
|
metadata?: Record<string, any>;
|
|
};
|
|
|
|
export type UrlFetchParams = {
|
|
urlList: string[];
|
|
selector?: string;
|
|
};
|
|
export type UrlFetchResponse = {
|
|
url: string;
|
|
title: string;
|
|
content: string;
|
|
selector?: string;
|
|
}[];
|