mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-26 05:08:50 +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
289 lines
8.7 KiB
TypeScript
289 lines
8.7 KiB
TypeScript
import {
|
|
EModelEndpoint,
|
|
defaultEndpoints,
|
|
modularEndpoints,
|
|
LocalStorageKeys,
|
|
isAgentsEndpoint,
|
|
isAssistantsEndpoint,
|
|
} from 'librechat-data-provider';
|
|
import type * as t from 'librechat-data-provider';
|
|
import type { LocalizeFunction, IconsRecord } from '~/common';
|
|
|
|
export const getEntityName = ({
|
|
name = '',
|
|
localize,
|
|
isAgent,
|
|
}: {
|
|
name?: string;
|
|
isAgent?: boolean;
|
|
localize: LocalizeFunction;
|
|
}) => {
|
|
if (name && name.length > 0) {
|
|
return name;
|
|
} else {
|
|
return isAgent === true ? localize('com_ui_agent') : localize('com_ui_assistant');
|
|
}
|
|
};
|
|
|
|
export const getEndpointsFilter = (endpointsConfig: t.TEndpointsConfig) => {
|
|
const filter: Record<string, boolean> = {};
|
|
if (!endpointsConfig) {
|
|
return filter;
|
|
}
|
|
for (const key of Object.keys(endpointsConfig)) {
|
|
filter[key] = !!endpointsConfig[key];
|
|
}
|
|
return filter;
|
|
};
|
|
|
|
export const getAvailableEndpoints = (
|
|
filter: Record<string, boolean>,
|
|
endpointsConfig: t.TEndpointsConfig,
|
|
) => {
|
|
const defaultSet = new Set(defaultEndpoints);
|
|
const availableEndpoints: EModelEndpoint[] = [];
|
|
|
|
for (const endpoint in endpointsConfig) {
|
|
// Check if endpoint is in the filter or its type is in defaultEndpoints
|
|
if (
|
|
filter[endpoint] ||
|
|
(endpointsConfig[endpoint]?.type &&
|
|
defaultSet.has(endpointsConfig[endpoint]?.type as EModelEndpoint))
|
|
) {
|
|
availableEndpoints.push(endpoint as EModelEndpoint);
|
|
}
|
|
}
|
|
|
|
return availableEndpoints;
|
|
};
|
|
|
|
/** Get the specified field from the endpoint config */
|
|
export function getEndpointField<K extends keyof t.TConfig>(
|
|
endpointsConfig: t.TEndpointsConfig | undefined | null,
|
|
endpoint: EModelEndpoint | string | null | undefined,
|
|
property: K,
|
|
): t.TConfig[K] | undefined {
|
|
if (!endpointsConfig || endpoint === null || endpoint === undefined) {
|
|
return undefined;
|
|
}
|
|
|
|
const config = endpointsConfig[endpoint];
|
|
if (!config) {
|
|
return undefined;
|
|
}
|
|
|
|
return config[property];
|
|
}
|
|
|
|
export function mapEndpoints(endpointsConfig: t.TEndpointsConfig) {
|
|
const filter = getEndpointsFilter(endpointsConfig);
|
|
return getAvailableEndpoints(filter, endpointsConfig).sort(
|
|
(a, b) => (endpointsConfig?.[a]?.order ?? 0) - (endpointsConfig?.[b]?.order ?? 0),
|
|
);
|
|
}
|
|
|
|
const firstLocalConvoKey = LocalStorageKeys.LAST_CONVO_SETUP + '_0';
|
|
|
|
/**
|
|
* Ensures the last selected model stays up to date, as conversation may
|
|
* update without updating last convo setup when same endpoint */
|
|
export function updateLastSelectedModel({
|
|
endpoint,
|
|
model = '',
|
|
}: {
|
|
endpoint: string;
|
|
model?: string;
|
|
}) {
|
|
if (!model) {
|
|
return;
|
|
}
|
|
/* Note: an empty string value is possible */
|
|
const lastConversationSetup = JSON.parse(
|
|
(localStorage.getItem(firstLocalConvoKey) ?? '{}') || '{}',
|
|
);
|
|
|
|
if (lastConversationSetup.endpoint === endpoint) {
|
|
lastConversationSetup.model = model;
|
|
localStorage.setItem(firstLocalConvoKey, JSON.stringify(lastConversationSetup));
|
|
}
|
|
|
|
const lastSelectedModels = JSON.parse(
|
|
(localStorage.getItem(LocalStorageKeys.LAST_MODEL) ?? '{}') || '{}',
|
|
);
|
|
lastSelectedModels[endpoint] = model;
|
|
localStorage.setItem(LocalStorageKeys.LAST_MODEL, JSON.stringify(lastSelectedModels));
|
|
}
|
|
|
|
interface ConversationInitParams {
|
|
conversation: t.TConversation | null;
|
|
newEndpoint: EModelEndpoint | string | null;
|
|
endpointsConfig: t.TEndpointsConfig;
|
|
modularChat?: boolean;
|
|
}
|
|
|
|
interface InitiatedTemplateResult {
|
|
template: Partial<t.TPreset>;
|
|
shouldSwitch: boolean;
|
|
isExistingConversation: boolean;
|
|
isCurrentModular: boolean;
|
|
isNewModular: boolean;
|
|
newEndpointType: EModelEndpoint | undefined;
|
|
}
|
|
|
|
/** Get the conditional logic for switching conversations */
|
|
export function getConvoSwitchLogic(params: ConversationInitParams): InitiatedTemplateResult {
|
|
const { conversation, newEndpoint, endpointsConfig, modularChat = false } = params;
|
|
|
|
const currentEndpoint = conversation?.endpoint;
|
|
const template: Partial<t.TPreset> = {
|
|
...conversation,
|
|
endpoint: newEndpoint,
|
|
conversationId: 'new',
|
|
};
|
|
|
|
const isAssistantSwitch =
|
|
isAssistantsEndpoint(newEndpoint) &&
|
|
isAssistantsEndpoint(currentEndpoint) &&
|
|
currentEndpoint === newEndpoint;
|
|
|
|
const conversationId = conversation?.conversationId ?? '';
|
|
const isExistingConversation = !!(conversationId && conversationId !== 'new');
|
|
|
|
const currentEndpointType =
|
|
getEndpointField(endpointsConfig, currentEndpoint, 'type') ?? currentEndpoint;
|
|
const newEndpointType =
|
|
getEndpointField(endpointsConfig, newEndpoint, 'type') ??
|
|
(newEndpoint as EModelEndpoint | undefined);
|
|
|
|
const hasEndpoint = modularEndpoints.has(currentEndpoint ?? '');
|
|
const hasCurrentEndpointType = modularEndpoints.has(currentEndpointType ?? '');
|
|
const isCurrentModular = hasEndpoint || hasCurrentEndpointType || isAssistantSwitch;
|
|
|
|
const hasNewEndpoint = modularEndpoints.has(newEndpoint ?? '');
|
|
const hasNewEndpointType = modularEndpoints.has(newEndpointType ?? '');
|
|
const isNewModular = hasNewEndpoint || hasNewEndpointType || isAssistantSwitch;
|
|
|
|
const endpointsMatch = currentEndpoint === newEndpoint;
|
|
const shouldSwitch = endpointsMatch || modularChat || isAssistantSwitch;
|
|
|
|
return {
|
|
template,
|
|
shouldSwitch,
|
|
isExistingConversation,
|
|
isCurrentModular,
|
|
newEndpointType,
|
|
isNewModular,
|
|
};
|
|
}
|
|
|
|
/** Gets the default spec by order.
|
|
*
|
|
* First, the admin defined default, then last selected spec, followed by first spec
|
|
*/
|
|
export function getDefaultModelSpec(startupConfig?: t.TStartupConfig) {
|
|
const { modelSpecs, interface: interfaceConfig } = startupConfig ?? {};
|
|
const { list, prioritize } = modelSpecs ?? {};
|
|
if (!list) {
|
|
return;
|
|
}
|
|
const defaultSpec = list?.find((spec) => spec.default);
|
|
if (prioritize === true || !interfaceConfig?.modelSelect) {
|
|
const lastSelectedSpecName = localStorage.getItem(LocalStorageKeys.LAST_SPEC);
|
|
const lastSelectedSpec = list?.find((spec) => spec.name === lastSelectedSpecName);
|
|
return defaultSpec || lastSelectedSpec || list?.[0];
|
|
} else if (defaultSpec) {
|
|
return defaultSpec;
|
|
}
|
|
const lastConversationSetup = JSON.parse(
|
|
localStorage.getItem(LocalStorageKeys.LAST_CONVO_SETUP + '_0') ?? '{}',
|
|
);
|
|
if (!lastConversationSetup.spec) {
|
|
return;
|
|
}
|
|
return list?.find((spec) => spec.name === lastConversationSetup.spec);
|
|
}
|
|
|
|
export function getModelSpecPreset(modelSpec?: t.TModelSpec) {
|
|
if (!modelSpec) {
|
|
return;
|
|
}
|
|
return {
|
|
...modelSpec.preset,
|
|
spec: modelSpec.name,
|
|
iconURL: getModelSpecIconURL(modelSpec),
|
|
};
|
|
}
|
|
|
|
/** Gets the default spec iconURL by order or definition.
|
|
*
|
|
* First, the admin defined default, then last selected spec, followed by first spec
|
|
*/
|
|
export function getModelSpecIconURL(modelSpec: t.TModelSpec) {
|
|
return modelSpec.iconURL ?? modelSpec.preset.iconURL ?? modelSpec.preset.endpoint ?? '';
|
|
}
|
|
|
|
/** Gets the default frontend-facing endpoint, dependent on iconURL definition.
|
|
*
|
|
* If the iconURL is defined in the endpoint config, use it, otherwise use the endpoint
|
|
*/
|
|
export function getIconEndpoint({
|
|
endpointsConfig,
|
|
iconURL,
|
|
endpoint,
|
|
}: {
|
|
endpointsConfig?: t.TEndpointsConfig;
|
|
iconURL?: string | null;
|
|
endpoint?: string | null;
|
|
}) {
|
|
return (endpointsConfig?.[iconURL ?? ''] ? (iconURL ?? endpoint) : endpoint) ?? '';
|
|
}
|
|
|
|
/** Gets the key to use for the default endpoint iconURL, as defined by the custom config */
|
|
export function getIconKey({
|
|
endpoint,
|
|
endpointType: _eType,
|
|
endpointsConfig,
|
|
endpointIconURL: iconURL,
|
|
}: {
|
|
endpoint?: string | null;
|
|
endpointsConfig?: t.TEndpointsConfig | null;
|
|
endpointType?: string | null;
|
|
endpointIconURL?: string;
|
|
}): keyof IconsRecord {
|
|
const endpointType = _eType ?? getEndpointField(endpointsConfig, endpoint, 'type') ?? '';
|
|
const endpointIconURL = iconURL ?? getEndpointField(endpointsConfig, endpoint, 'iconURL') ?? '';
|
|
if (endpointIconURL && EModelEndpoint[endpointIconURL] != null) {
|
|
return endpointIconURL;
|
|
}
|
|
return endpointType ? 'unknown' : (endpoint ?? 'unknown');
|
|
}
|
|
|
|
export const getEntity = ({
|
|
endpoint,
|
|
assistant_id,
|
|
agent_id,
|
|
agentsMap,
|
|
assistantMap,
|
|
}: {
|
|
endpoint: EModelEndpoint | string | null | undefined;
|
|
assistant_id: string | undefined;
|
|
agent_id: string | undefined;
|
|
agentsMap: t.TAgentsMap | undefined;
|
|
assistantMap: t.TAssistantsMap | undefined;
|
|
}): {
|
|
entity: t.Agent | t.Assistant | undefined | null;
|
|
isAgent: boolean;
|
|
isAssistant: boolean;
|
|
} => {
|
|
const isAgent = isAgentsEndpoint(endpoint);
|
|
const isAssistant = isAssistantsEndpoint(endpoint);
|
|
|
|
if (isAgent) {
|
|
const agent = agentsMap?.[agent_id ?? ''];
|
|
return { entity: agent, isAgent, isAssistant };
|
|
} else if (isAssistant) {
|
|
const assistant = assistantMap?.[endpoint ?? '']?.[assistant_id ?? ''];
|
|
return { entity: assistant, isAgent, isAssistant };
|
|
}
|
|
return { entity: null, isAgent, isAssistant };
|
|
};
|