refactor: streamline dataset detail fetching and improve dataset list handling across components

This commit is contained in:
twwu
2025-06-18 15:05:21 +08:00
parent 379c92bd82
commit 4b3a54633f
7 changed files with 35 additions and 56 deletions

View File

@ -178,10 +178,10 @@ export type FetchDatasetsParams = {
export type DatasetListRequest = {
initialPage: number
tag_ids: string[]
tag_ids?: string[]
limit: number
include_all: boolean
keyword: string
include_all?: boolean
keyword?: string
}
export type DataSetListResponse = {