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,6 @@
export interface IChooseRequesterEntity {
label: string;
value: string;
provider_category?: string;
description?: string;
}