Refactor: Refactoring VolcEngine and Yiyan modal using shadcn. #10427 (#12426)

### What problem does this PR solve?

Refactor: Refactoring VolcEngine and Yiyan modal using shadcn. #10427
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2026-01-05 09:53:47 +08:00
committed by GitHub
parent 5ebe334a2f
commit cc8a10376a
4 changed files with 205 additions and 216 deletions

View File

@@ -3,7 +3,7 @@ export interface IAddLlmRequestBody {
llm_name: string;
model_type: string;
api_base?: string; // chat|embedding|speech2text|image2text
api_key: string | Record<string, any>;
api_key?: string | Record<string, any>;
max_tokens: number;
}