feat: implement Hybrid AI architecture for admin norm builder

This commit is contained in:
2026-06-23 18:40:41 +00:00
parent 3f8d8d6e34
commit 3298cd8c5d
3 changed files with 70 additions and 5 deletions
+3
View File
@@ -8,6 +8,9 @@ interface AdminPanelProps {
provider: AIProvider;
model: string;
endpoint?: string;
adminApiKey: string;
adminModel: string;
onAdminConfigSave: (key: string, model: string) => void;
}
export const AdminPanel: React.FC<AdminPanelProps> = (props) => {