mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-21 01:36:13 +01:00
120 lines
2.9 KiB
TypeScript
120 lines
2.9 KiB
TypeScript
|
|
import { TPreset } from 'librechat-data-provider';
|
||
|
|
import type { TSetOptionsPayload, TSetExample, TSetOption } from '~/common';
|
||
|
|
import { useChatContext } from '~/Providers/ChatContext';
|
||
|
|
import { cleanupPreset } from '~/utils';
|
||
|
|
|
||
|
|
type TUsePresetOptions = (preset?: TPreset | boolean | null) => TSetOptionsPayload | boolean;
|
||
|
|
|
||
|
|
const usePresetOptions: TUsePresetOptions = (_preset) => {
|
||
|
|
const { preset, setPreset } = useChatContext();
|
||
|
|
|
||
|
|
if (!_preset) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
const getConversation: () => TPreset | null = () => preset;
|
||
|
|
|
||
|
|
const setOption: TSetOption = (param) => (newValue) => {
|
||
|
|
const update = {};
|
||
|
|
update[param] = newValue;
|
||
|
|
setPreset((prevState) =>
|
||
|
|
cleanupPreset({
|
||
|
|
preset: {
|
||
|
|
...prevState,
|
||
|
|
...update,
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
const setExample: TSetExample = (i, type, newValue = null) => {
|
||
|
|
const update = {};
|
||
|
|
const current = preset?.examples?.slice() || [];
|
||
|
|
const currentExample = { ...current[i] } || {};
|
||
|
|
currentExample[type] = { content: newValue };
|
||
|
|
current[i] = currentExample;
|
||
|
|
update['examples'] = current;
|
||
|
|
setPreset((prevState) =>
|
||
|
|
cleanupPreset({
|
||
|
|
preset: {
|
||
|
|
...prevState,
|
||
|
|
...update,
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
const addExample: () => void = () => {
|
||
|
|
const update = {};
|
||
|
|
const current = preset?.examples?.slice() || [];
|
||
|
|
current.push({ input: { content: '' }, output: { content: '' } });
|
||
|
|
update['examples'] = current;
|
||
|
|
setPreset((prevState) =>
|
||
|
|
cleanupPreset({
|
||
|
|
preset: {
|
||
|
|
...prevState,
|
||
|
|
...update,
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
const removeExample: () => void = () => {
|
||
|
|
const update = {};
|
||
|
|
const current = preset?.examples?.slice() || [];
|
||
|
|
if (current.length <= 1) {
|
||
|
|
update['examples'] = [{ input: { content: '' }, output: { content: '' } }];
|
||
|
|
setPreset((prevState) =>
|
||
|
|
cleanupPreset({
|
||
|
|
preset: {
|
||
|
|
...prevState,
|
||
|
|
...update,
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
current.pop();
|
||
|
|
update['examples'] = current;
|
||
|
|
setPreset((prevState) =>
|
||
|
|
cleanupPreset({
|
||
|
|
preset: {
|
||
|
|
...prevState,
|
||
|
|
...update,
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
const setAgentOption: TSetOption = (param) => (newValue) => {
|
||
|
|
const editablePreset = JSON.parse(JSON.stringify(_preset));
|
||
|
|
const { agentOptions } = editablePreset;
|
||
|
|
agentOptions[param] = newValue;
|
||
|
|
setPreset((prevState) =>
|
||
|
|
cleanupPreset({
|
||
|
|
preset: {
|
||
|
|
...prevState,
|
||
|
|
agentOptions,
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
const checkPluginSelection: (value: string) => boolean = () => false;
|
||
|
|
const setTools: (newValue: string) => void = () => {
|
||
|
|
return;
|
||
|
|
};
|
||
|
|
|
||
|
|
return {
|
||
|
|
setOption,
|
||
|
|
setExample,
|
||
|
|
addExample,
|
||
|
|
removeExample,
|
||
|
|
getConversation,
|
||
|
|
checkPluginSelection,
|
||
|
|
setAgentOption,
|
||
|
|
setTools,
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
export default usePresetOptions;
|