Feat: Add edit model type function (#16029)

### What problem does this PR solve?

Feat: Add edit model type function

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2026-06-15 19:11:05 +08:00
committed by GitHub
parent 47495c1f6a
commit 7d94b0818e
8 changed files with 159 additions and 7 deletions

View File

@@ -57,6 +57,11 @@ export interface IAddInstanceModelRequestBody {
extra?: Record<string, any>;
}
export interface IEditInstanceModelRequestBody {
model_name: string[];
model_type: string[];
}
export interface IListAllModelsRequestParams {
type?: string;
}