mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-28 14:18:51 +01:00
* docs: make_your_own.md formatting fix for mkdocs * feat: add express-mongo-sanitize feat: add login/registration rate limiting * chore: remove unnecessary console log * wip: remove token handling from localStorage to encrypted DB solution * refactor: minor change to UserService * fix mongo query and add keys route to server * fix backend controllers and simplify schema/crud * refactor: rename token to key to separate from access/refresh tokens, setTokenDialog -> setKeyDialog * refactor(schemas): TEndpointOption token -> key * refactor(api): use new encrypted key retrieval system * fix(SetKeyDialog): fix key prop error * fix(abortMiddleware): pass random UUID if messageId is not generated yet for proper error display on frontend * fix(getUserKey): wrong prop passed in arg, adds error handling * fix: prevent message without conversationId from saving to DB, prevents branching on the frontend to a new top-level branch * refactor: change wording of multiple display messages * refactor(checkExpiry -> checkUserKeyExpiry): move to UserService file * fix: type imports from common * refactor(SubmitButton): convert to TS * refactor(key.ts): change localStorage map key name * refactor: add new custom tailwind classes to better match openAI colors * chore: remove unnecessary warning and catch ScreenShot error * refactor: move userKey frontend logic to hooks and remove use of localStorage and instead query the DB * refactor: invalidate correct query key, memoize userKey hook, conditionally render SetKeyDialog to avoid unnecessary calls, refactor SubmitButton props and useEffect for showing 'provide key first' * fix(SetKeyDialog): use enum-like object for expiry values feat(Dropdown): add optionsClassName to dynamically change dropdown options container classes * fix: handle edge case where user had provided a key but the server changes to env variable for keys * refactor(OpenAI/titleConvo): move titling to client to retain authorized credentials in message lifecycle for titling * fix(azure): handle user_provided keys correctly for azure * feat: send user Id to OpenAI to differentiate users in completion requests * refactor(OpenAI/titleConvo): adding tokens helps minimize LLM from using the language in title response * feat: add delete endpoint for keys * chore: remove throttling of title * feat: add 'Data controls' to Settings, add 'Revoke' keys feature in Key Dialog and Data controls * refactor: reorganize PluginsClient files in langchain format * feat: use langchain for titling convos * chore: cleanup titling convo, with fallback to original method, escape braces, use only snippet for language detection * refactor: move helper functions to appropriate langchain folders for reusability * fix: userProvidesKey handling for gptPlugins * fix: frontend handling of plugins key * chore: cleanup logging and ts-ignore SSE * fix: forwardRef misuse in DangerButton * fix(GoogleConfig/FileUpload): localize errors and simplify validation with zod * fix: cleanup google logging and fix user provided key handling * chore: remove titling from google * chore: removing logging from browser endpoint * wip: fix menu flicker * feat: useLocalStorage hook * feat: add Tooltip for UI * refactor(EndpointMenu): utilize Tooltip and useLocalStorage, remove old 'New Chat' slide-over * fix(e2e): use testId for endpoint menu trigger * chore: final touches to EndpointMenu before future refactor to declutter component * refactor(localization): change select endpoint to open menu and add translations * chore: add final prop to error message response * ci: minor edits to facilitate testing * ci: new e2e test which tests for new key setting/revoking features
140 lines
3.8 KiB
TypeScript
140 lines
3.8 KiB
TypeScript
import { useCallback, memo, ReactNode } from 'react';
|
|
import type { TResPlugin, TInput } from 'librechat-data-provider';
|
|
import { ChevronDownIcon, LucideProps } from 'lucide-react';
|
|
import { Disclosure } from '@headlessui/react';
|
|
import { useRecoilValue } from 'recoil';
|
|
import { Spinner } from '~/components';
|
|
import CodeBlock from './CodeBlock';
|
|
import { cn } from '~/utils/';
|
|
import store from '~/store';
|
|
|
|
type PluginsMap = {
|
|
[pluginKey: string]: string;
|
|
};
|
|
|
|
type PluginIconProps = LucideProps & {
|
|
className?: string;
|
|
};
|
|
|
|
function formatJSON(json: string) {
|
|
try {
|
|
return JSON.stringify(JSON.parse(json), null, 2);
|
|
} catch (e) {
|
|
return json;
|
|
}
|
|
}
|
|
|
|
function formatInputs(inputs: TInput[]) {
|
|
let output = '';
|
|
|
|
for (let i = 0; i < inputs.length; i++) {
|
|
const input = formatJSON(`${inputs[i]?.inputStr ?? inputs[i]}`);
|
|
output += input;
|
|
|
|
if (inputs.length > 1 && i !== inputs.length - 1) {
|
|
output += ',\n';
|
|
}
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
type PluginProps = {
|
|
plugin: TResPlugin;
|
|
};
|
|
|
|
const Plugin: React.FC<PluginProps> = ({ plugin }) => {
|
|
const plugins: PluginsMap = useRecoilValue(store.plugins);
|
|
|
|
const getPluginName = useCallback(
|
|
(pluginKey: string) => {
|
|
if (!pluginKey) {
|
|
return null;
|
|
}
|
|
|
|
if (pluginKey === 'n/a' || pluginKey === 'self reflection') {
|
|
return pluginKey;
|
|
}
|
|
return plugins[pluginKey] ?? 'self reflection';
|
|
},
|
|
[plugins],
|
|
);
|
|
|
|
if (!plugin || !plugin.latest) {
|
|
return null;
|
|
}
|
|
|
|
const latestPlugin = getPluginName(plugin.latest);
|
|
|
|
if (!latestPlugin || (latestPlugin && latestPlugin === 'n/a')) {
|
|
return null;
|
|
}
|
|
|
|
const generateStatus = (): ReactNode => {
|
|
if (!plugin.loading && latestPlugin === 'self reflection') {
|
|
return 'Finished';
|
|
} else if (latestPlugin === 'self reflection') {
|
|
return 'I\'m thinking...';
|
|
} else {
|
|
return (
|
|
<>
|
|
{plugin.loading ? 'Using' : 'Used'} <b>{latestPlugin}</b>
|
|
{plugin.loading ? '...' : ''}
|
|
</>
|
|
);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-col items-start">
|
|
<Disclosure>
|
|
{({ open }) => {
|
|
const iconProps: PluginIconProps = {
|
|
className: cn(open ? 'rotate-180 transform' : '', 'h-4 w-4'),
|
|
};
|
|
return (
|
|
<>
|
|
<div
|
|
className={cn(
|
|
plugin.loading ? 'bg-green-100' : 'bg-gray-20',
|
|
'flex items-center rounded p-3 text-xs text-gray-900',
|
|
)}
|
|
>
|
|
<div>
|
|
<div className="flex items-center gap-3">
|
|
<div>{generateStatus()}</div>
|
|
</div>
|
|
</div>
|
|
{plugin.loading && <Spinner className="ml-1" />}
|
|
<Disclosure.Button className="ml-12 flex items-center gap-2">
|
|
<ChevronDownIcon {...iconProps} />
|
|
</Disclosure.Button>
|
|
</div>
|
|
|
|
<Disclosure.Panel className="my-3 flex max-w-full flex-col gap-3">
|
|
<CodeBlock
|
|
lang={latestPlugin ? `REQUEST TO ${latestPlugin?.toUpperCase()}` : 'REQUEST'}
|
|
codeChildren={formatInputs(plugin.inputs ?? [])}
|
|
plugin={true}
|
|
classProp="max-h-[450px]"
|
|
/>
|
|
{plugin.outputs && plugin.outputs.length > 0 && (
|
|
<CodeBlock
|
|
lang={
|
|
latestPlugin ? `RESPONSE FROM ${latestPlugin?.toUpperCase()}` : 'RESPONSE'
|
|
}
|
|
codeChildren={formatJSON(plugin.outputs ?? '')}
|
|
plugin={true}
|
|
classProp="max-h-[450px]"
|
|
/>
|
|
)}
|
|
</Disclosure.Panel>
|
|
</>
|
|
);
|
|
}}
|
|
</Disclosure>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default memo(Plugin);
|