diff --git a/api/server/services/Endpoints/bedrock/initialize.js b/api/server/services/Endpoints/bedrock/initialize.js index d2be7e235b..3ffa03393d 100644 --- a/api/server/services/Endpoints/bedrock/initialize.js +++ b/api/server/services/Endpoints/bedrock/initialize.js @@ -61,6 +61,7 @@ const initializeClient = async ({ req, res, endpointOption }) => { eventHandlers, collectedUsage, spec: endpointOption.spec, + iconURL: endpointOption.iconURL, endpoint: EModelEndpoint.bedrock, resendFiles: endpointOption.resendFiles, maxContextTokens: diff --git a/client/src/components/SidePanel/Agents/FileSearch.tsx b/client/src/components/SidePanel/Agents/FileSearch.tsx index 8ce49b91d4..ad640dbcf1 100644 --- a/client/src/components/SidePanel/Agents/FileSearch.tsx +++ b/client/src/components/SidePanel/Agents/FileSearch.tsx @@ -5,7 +5,6 @@ import { EToolResources, mergeFileConfig, AgentCapabilities, - retrievalMimeTypes, fileConfig as defaultFileConfig, } from 'librechat-data-provider'; import type { ExtendedFile, AgentForm } from '~/common'; @@ -77,6 +76,15 @@ export default function FileSearch({
+ {/* File Search (RAG API) Files */} +
{children}
} + />
); diff --git a/client/src/components/SidePanel/SidePanel.tsx b/client/src/components/SidePanel/SidePanel.tsx index dacd0beb16..91eb895baf 100644 --- a/client/src/components/SidePanel/SidePanel.tsx +++ b/client/src/components/SidePanel/SidePanel.tsx @@ -183,7 +183,7 @@ const SidePanel = ({ throttledSaveLayout(sizes)} - className="transition-width relative h-full w-full flex-1 overflow-auto bg-white dark:bg-gray-800" + className="transition-width relative h-full w-full flex-1 overflow-auto bg-presentation" > {artifacts != null && ( <> - + {(!isCollapsed || minSize > 0) && !isSmallScreen && !fullCollapse && ( - + )}