🕵️‍♂️ fix: Handle 404 errors on agent queries for favorites (#11587)

This commit is contained in:
ethanlaj 2026-02-11 22:12:05 -05:00 committed by GitHub
parent 417405a974
commit c7531dd029
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 210 additions and 3 deletions

View file

@ -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]>;