mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-31 23:58:50 +01:00
* WIP: first pass ModelSpecs * refactor(onSelectEndpoint): use `getConvoSwitchLogic` * feat: introduce iconURL, greeting, frontend fields for conversations/presets/messages * feat: conversation.iconURL & greeting in Landing * feat: conversation.iconURL & greeting in New Chat button * feat: message.iconURL * refactor: ConversationIcon -> ConvoIconURL * WIP: add spec as a conversation field * refactor: useAppStartup, set spec on initial load for new chat, allow undefined spec, add localStorage keys enum, additional type fields for spec * feat: handle `showIconInMenu`, `showIconInHeader`, undefined `iconURL` and no specs on initial load * chore: handle undefined or empty modelSpecs * WIP: first pass, modelSpec schema for custom config * refactor: move default filtered tools definition to ToolService * feat: pass modelSpecs from backend via startupConfig * refactor: modelSpecs config, return and define list * fix: react error and include iconURL in responseMessage * refactor: add iconURL to responseMessage only * refactor: getIconEndpoint * refactor: pass TSpecsConfig * fix(assistants): differentiate compactAssistantSchema, correctly resets shared conversation state with other endpoints * refactor: assistant id prefix localStorage key * refactor: add more LocalStorageKeys and replace hardcoded values * feat: prioritize spec on new chat behavior: last selected modelSpec behavior (localStorage) * feat: first pass, interface config * chore: WIP, todo: add warnings based on config.modelSpecs settings. * feat: enforce modelSpecs if configured * feat: show config file yaml errors * chore: delete unused legacy Plugins component * refactor: set tools to localStorage from recoil store * chore: add stable recoil setter to useEffect deps * refactor: save tools to conversation documents * style(MultiSelectPop): dynamic height, remove unused import * refactor(react-query): use localstorage keys and pass config to useAvailablePluginsQuery * feat(utils): add mapPlugins * refactor(Convo): use conversation.tools if defined, lastSelectedTools if not * refactor: remove unused legacy code using `useSetOptions`, remove conditional flag `isMultiChat` for using legacy settings * refactor(PluginStoreDialog): add exhaustive-deps which are stable react state setters * fix(HeaderOptions): pass `popover` as true * refactor(useSetStorage): use project enums * refactor: use LocalStorageKeys enum * fix: prevent setConversation from setting falsy values in lastSelectedTools * refactor: use map for availableTools state and available Plugins query * refactor(updateLastSelectedModel): organize logic better and add note on purpose * fix(setAgentOption): prevent reseting last model to secondary model for gptPlugins * refactor(buildDefaultConvo): use enum * refactor: remove `useSetStorage` and consolidate areas where conversation state is saved to localStorage * fix: conversations retain tools on refresh * fix(gptPlugins): prevent nullish tools from being saved * chore: delete useServerStream * refactor: move initial plugins logic to useAppStartup * refactor(MultiSelectDropDown): add more pass-in className props * feat: use tools in presets * chore: delete unused usePresetOptions * refactor: new agentOptions default handling * chore: note * feat: add label and custom instructions to agents * chore: remove 'disabled with tools' message * style: move plugins to 2nd column in parameters * fix: TPreset type for agentOptions * fix: interface controls * refactor: add interfaceConfig, use Separator within Switcher * refactor: hide Assistants panel if interface.parameters are disabled * fix(Header): only modelSpecs if list is greater than 0 * refactor: separate MessageIcon logic from useMessageHelpers for better react rule-following * fix(AppService): don't use reserved keyword 'interface' * feat: set existing Icon for custom endpoints through iconURL * fix(ci): tests passing for App Service * docs: refactor custom_config.md for readability and better organization, also include missing values * docs: interface section and re-organize docs * docs: update modelSpecs info * chore: remove unused files * chore: remove unused files * chore: move useSetIndexOptions * chore: remove unused file * chore: move useConversation(s) * chore: move useDefaultConvo * chore: move useNavigateToConvo * refactor: use plugin install hook so it can be used elsewhere * chore: import order * update docs * refactor(OpenAI/Plugins): allow modelLabel as an initial value for chatGptLabel * chore: remove unused EndpointOptionsPopover and hide 'Save as Preset' button if preset UI visibility disabled * feat(loadDefaultInterface): issue warnings based on values * feat: changelog for custom config file * docs: add additional changelog note * fix: prevent unavailable tool selection from preset and update availableTools on Plugin installations * feat: add `filteredTools` option in custom config * chore: changelog * fix(MessageIcon): always overwrite conversation.iconURL in messageSettings * fix(ModelSpecsMenu): icon edge cases * fix(NewChat): dynamic icon * fix(PluginsClient): always include endpoint in responseMessage * fix: always include endpoint and iconURL in responseMessage across different response methods * feat: interchangeable keys for modelSpec enforcing
211 lines
5.8 KiB
TypeScript
211 lines
5.8 KiB
TypeScript
import {
|
|
format,
|
|
isToday,
|
|
subDays,
|
|
getYear,
|
|
parseISO,
|
|
startOfDay,
|
|
startOfYear,
|
|
isWithinInterval,
|
|
} from 'date-fns';
|
|
import { EModelEndpoint, LocalStorageKeys } from 'librechat-data-provider';
|
|
import type {
|
|
TConversation,
|
|
ConversationData,
|
|
ConversationUpdater,
|
|
GroupedConversations,
|
|
} from 'librechat-data-provider';
|
|
|
|
const getGroupName = (date: Date) => {
|
|
const now = new Date();
|
|
if (isToday(date)) {
|
|
return 'Today';
|
|
}
|
|
if (isWithinInterval(date, { start: startOfDay(subDays(now, 1)), end: now })) {
|
|
return 'Yesterday';
|
|
}
|
|
if (isWithinInterval(date, { start: subDays(now, 7), end: now })) {
|
|
return 'Previous 7 days';
|
|
}
|
|
if (isWithinInterval(date, { start: subDays(now, 30), end: now })) {
|
|
return 'Previous 30 days';
|
|
}
|
|
if (isWithinInterval(date, { start: startOfYear(now), end: now })) {
|
|
return ' ' + format(date, 'MMMM');
|
|
}
|
|
return ' ' + getYear(date).toString();
|
|
};
|
|
|
|
export const groupConversationsByDate = (conversations: TConversation[]): GroupedConversations => {
|
|
if (!Array.isArray(conversations)) {
|
|
return [];
|
|
}
|
|
|
|
const seenConversationIds = new Set();
|
|
const groups = conversations.reduce((acc, conversation) => {
|
|
if (!conversation) {
|
|
return acc;
|
|
}
|
|
|
|
if (seenConversationIds.has(conversation.conversationId)) {
|
|
return acc;
|
|
}
|
|
seenConversationIds.add(conversation.conversationId);
|
|
|
|
const date = parseISO(conversation.updatedAt);
|
|
const groupName = getGroupName(date);
|
|
if (!acc[groupName]) {
|
|
acc[groupName] = [];
|
|
}
|
|
acc[groupName].push(conversation);
|
|
return acc;
|
|
}, {});
|
|
|
|
const sortedGroups = {};
|
|
const dateGroups = ['Today', 'Last 7 days', 'Last 30 days'];
|
|
dateGroups.forEach((group) => {
|
|
if (groups[group]) {
|
|
sortedGroups[group] = groups[group];
|
|
}
|
|
});
|
|
|
|
Object.keys(groups)
|
|
.filter((group) => !dateGroups.includes(group))
|
|
.sort()
|
|
.reverse()
|
|
.forEach((year) => {
|
|
sortedGroups[year] = groups[year];
|
|
});
|
|
|
|
return Object.entries(sortedGroups);
|
|
};
|
|
|
|
export const addConversation: ConversationUpdater = (data, newConversation) => {
|
|
const newData = JSON.parse(JSON.stringify(data)) as ConversationData;
|
|
const { pageIndex, convIndex } = findPageForConversation(newData, newConversation);
|
|
|
|
if (pageIndex !== -1 && convIndex !== -1) {
|
|
return updateConversation(data, newConversation);
|
|
}
|
|
newData.pages[0].conversations.unshift({
|
|
...newConversation,
|
|
updatedAt: new Date().toISOString(),
|
|
});
|
|
|
|
return newData;
|
|
};
|
|
|
|
export function findPageForConversation(
|
|
data: ConversationData,
|
|
conversation: TConversation | { conversationId: string },
|
|
) {
|
|
for (let pageIndex = 0; pageIndex < data.pages.length; pageIndex++) {
|
|
const page = data.pages[pageIndex];
|
|
const convIndex = page.conversations.findIndex(
|
|
(c) => c.conversationId === conversation.conversationId,
|
|
);
|
|
if (convIndex !== -1) {
|
|
return { pageIndex, convIndex };
|
|
}
|
|
}
|
|
return { pageIndex: -1, convIndex: -1 }; // Not found
|
|
}
|
|
|
|
export const updateConversation: ConversationUpdater = (data, updatedConversation) => {
|
|
const newData = JSON.parse(JSON.stringify(data));
|
|
const { pageIndex, convIndex } = findPageForConversation(newData, updatedConversation);
|
|
|
|
if (pageIndex !== -1 && convIndex !== -1) {
|
|
// Remove the conversation from its current position
|
|
newData.pages[pageIndex].conversations.splice(convIndex, 1);
|
|
// Add the updated conversation to the top of the first page
|
|
newData.pages[0].conversations.unshift({
|
|
...updatedConversation,
|
|
updatedAt: new Date().toISOString(),
|
|
});
|
|
}
|
|
|
|
return newData;
|
|
};
|
|
|
|
export const updateConvoFields: ConversationUpdater = (
|
|
data: ConversationData,
|
|
updatedConversation: Partial<TConversation> & Pick<TConversation, 'conversationId'>,
|
|
): ConversationData => {
|
|
const newData = JSON.parse(JSON.stringify(data));
|
|
const { pageIndex, convIndex } = findPageForConversation(
|
|
newData,
|
|
updatedConversation as { conversationId: string },
|
|
);
|
|
|
|
if (pageIndex !== -1 && convIndex !== -1) {
|
|
const deleted = newData.pages[pageIndex].conversations.splice(convIndex, 1);
|
|
const oldConversation = deleted[0] as TConversation;
|
|
|
|
newData.pages[0].conversations.unshift({
|
|
...oldConversation,
|
|
...updatedConversation,
|
|
updatedAt: new Date().toISOString(),
|
|
});
|
|
}
|
|
|
|
return newData;
|
|
};
|
|
|
|
export const deleteConversation = (
|
|
data: ConversationData,
|
|
conversationId: string,
|
|
): ConversationData => {
|
|
const newData = JSON.parse(JSON.stringify(data));
|
|
const { pageIndex, convIndex } = findPageForConversation(newData, { conversationId });
|
|
|
|
if (pageIndex !== -1 && convIndex !== -1) {
|
|
// Delete the conversation from its current page
|
|
newData.pages[pageIndex].conversations.splice(convIndex, 1);
|
|
}
|
|
|
|
return newData;
|
|
};
|
|
|
|
export const getConversationById = (
|
|
data: ConversationData | undefined,
|
|
conversationId: string | null,
|
|
): TConversation | undefined => {
|
|
if (!data || !conversationId) {
|
|
return undefined;
|
|
}
|
|
|
|
for (const page of data.pages) {
|
|
const conversation = page.conversations.find((c) => c.conversationId === conversationId);
|
|
if (conversation) {
|
|
return conversation;
|
|
}
|
|
}
|
|
return undefined;
|
|
};
|
|
|
|
export function storeEndpointSettings(conversation: TConversation | null) {
|
|
if (!conversation) {
|
|
return;
|
|
}
|
|
const { endpoint, model, agentOptions, jailbreak, toneStyle } = conversation;
|
|
|
|
if (!endpoint) {
|
|
return;
|
|
}
|
|
|
|
if (endpoint === EModelEndpoint.bingAI) {
|
|
const settings = { jailbreak, toneStyle };
|
|
localStorage.setItem(LocalStorageKeys.LAST_BING, JSON.stringify(settings));
|
|
return;
|
|
}
|
|
|
|
const lastModel = JSON.parse(localStorage.getItem(LocalStorageKeys.LAST_MODEL) || '{}');
|
|
lastModel[endpoint] = model;
|
|
|
|
if (endpoint === EModelEndpoint.gptPlugins) {
|
|
lastModel.secondaryModel = agentOptions?.model || model || '';
|
|
}
|
|
|
|
localStorage.setItem(LocalStorageKeys.LAST_MODEL, JSON.stringify(lastModel));
|
|
}
|