feat: implement models dialog for managing LLM and embedding models with dynamic URL handling

This commit is contained in:
Junyan Qin
2025-12-25 20:54:00 +08:00
parent 10ee30695a
commit 7479545339
16 changed files with 175 additions and 115 deletions
@@ -0,0 +1,8 @@
export interface ICreateLLMField {
name: string;
model_provider: string;
url: string;
api_key: string;
abilities: string[];
extra_args: string[];
}