🐞 fix: Handle Empty Model Error in Assistants Form (#2265)

This commit is contained in:
Danny Avila 2024-04-01 09:20:11 -04:00 committed by GitHub
parent cc92597f14
commit d07396d308
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 42 additions and 16 deletions

View file

@ -18,6 +18,8 @@ import type { LucideIcon } from 'lucide-react';
export type GenericSetter<T> = (value: T | ((currentValue: T) => T)) => void;
export type LastSelectedModels = Record<EModelEndpoint, string>;
export type NavLink = {
title: string;
label?: string;