Fix: update LayoutRecognizeFormField to accept ownerTenantId and refactor model handling in LLM requests (#16781)

This commit is contained in:
chanx
2026-07-10 09:36:25 +08:00
committed by GitHub
parent 0095fa048f
commit 8236f2cabb
15 changed files with 47 additions and 20 deletions

View File

@@ -111,6 +111,7 @@ export interface IInstanceModel {
}
export interface IDefaultModel {
model_id: string;
enable: boolean;
model_instance: string;
model_name: string;

View File

@@ -118,10 +118,8 @@ export interface IUpdateProviderInstanceRequestBody {
}
export interface ISetDefaultModelRequestBody {
model_provider: string;
model_instance: string;
model_type: string;
model_name: string;
model_id: string;
}
/**