(improvement)(chat-sdk) add parse error detail (#1476)

This commit is contained in:
williamhliu
2024-07-29 19:22:24 +08:00
committed by GitHub
parent 9a14728152
commit 9e4513f7ca
4 changed files with 57 additions and 34 deletions

View File

@@ -1,3 +1,5 @@
import { Dayjs } from 'dayjs';
export type SearchRecommendItem = {
complete: boolean;
modelId: number;
@@ -257,3 +259,5 @@ export type ParseTimeCostType = {
parseTime: number;
sqlTime: number;
};
export type RangeValue = [Dayjs, Dayjs];