mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 04:10:15 +01:00
* refactor: access control logic to TypeScript * chore: Change EndpointURLs to a constant object for improved type safety * 🐛 fix: Enhance agent access control by adding skipAgentCheck functionality * 🐛 fix: Add endpointFileConfig prop to AttachFileMenu and update file handling logic * 🐛 fix: Update tool handling logic to support optional groupedTools and improve null checks, add dedicated tool dialog for Assistants * chore: Export Accordion component from UI index for improved modularity * feat: Add ActivePanelContext for managing active panel state across components * chore: Replace string IDs with EModelEndpoint constants for assistants and agents in useSideNavLinks * fix: Integrate access checks for agent creation and deletion routes in actions.js
24 lines
536 B
TypeScript
24 lines
536 B
TypeScript
/* MCP */
|
|
export * from './mcp/manager';
|
|
export * from './mcp/oauth';
|
|
export * from './mcp/auth';
|
|
/* Utilities */
|
|
export * from './mcp/utils';
|
|
export * from './utils';
|
|
/* OAuth */
|
|
export * from './oauth';
|
|
/* Crypto */
|
|
export * from './crypto';
|
|
/* Flow */
|
|
export * from './flow/manager';
|
|
/* Middleware */
|
|
export * from './middleware';
|
|
/* Agents */
|
|
export * from './agents';
|
|
/* Endpoints */
|
|
export * from './endpoints';
|
|
/* Files */
|
|
export * from './files';
|
|
/* types */
|
|
export type * from './mcp/types';
|
|
export type * from './flow/types';
|