mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-04 14:57:20 +02:00
🕵️♂️ fix: Handle 404 errors on agent queries for favorites (#11587)
This commit is contained in:
parent
417405a974
commit
c7531dd029
3 changed files with 210 additions and 3 deletions
|
|
@ -9,6 +9,8 @@ import type {
|
|||
} from 'librechat-data-provider';
|
||||
import type { OptionWithIcon, ExtendedFile } from './types';
|
||||
|
||||
export type AgentQueryResult = { found: true; agent: Agent } | { found: false };
|
||||
|
||||
export type TAgentOption = OptionWithIcon &
|
||||
Agent & {
|
||||
knowledge_files?: Array<[string, ExtendedFile]>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue