mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-12 20:44:24 +01:00
* feat: add useAgentCapabilities hook to manage agent capabilities * refactor: move agents and endpoints configuration to AgentPanel context provider * refactor: implement useGetAgentsConfig hook for consolidated agents and endpoints management * refactor: enhance ToolsDropdown to utilize agent capabilities and streamline dropdown item rendering * chore: reorder return values in useAgentCapabilities for improved clarity * refactor: enhance agent capabilities handling in AttachFileMenu and update file handling logic to allow capabilities to be used for non-agents endpoints
4 lines
264 B
TypeScript
4 lines
264 B
TypeScript
export { default as useAgentsMap } from './useAgentsMap';
|
|
export { default as useSelectAgent } from './useSelectAgent';
|
|
export { default as useAgentCapabilities } from './useAgentCapabilities';
|
|
export { default as useGetAgentsConfig } from './useGetAgentsConfig';
|