mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-13 22:18:51 +01:00
96 lines
2.8 KiB
TypeScript
96 lines
2.8 KiB
TypeScript
|
|
import { useState, useRef, useEffect } from 'react';
|
||
|
|
import {
|
||
|
|
EToolResources,
|
||
|
|
EModelEndpoint,
|
||
|
|
mergeFileConfig,
|
||
|
|
fileConfig as defaultFileConfig,
|
||
|
|
} from 'librechat-data-provider';
|
||
|
|
import type { ExtendedFile } from '~/common';
|
||
|
|
import FileRow from '~/components/Chat/Input/Files/FileRow';
|
||
|
|
import { useGetFileConfig } from '~/data-provider';
|
||
|
|
import { useFileHandling } from '~/hooks/Files';
|
||
|
|
import useLocalize from '~/hooks/useLocalize';
|
||
|
|
import { useChatContext } from '~/Providers';
|
||
|
|
|
||
|
|
const tool_resource = EToolResources.code_interpreter;
|
||
|
|
|
||
|
|
export default function CodeFiles({
|
||
|
|
agent_id,
|
||
|
|
files: _files,
|
||
|
|
}: {
|
||
|
|
agent_id: string;
|
||
|
|
files?: [string, ExtendedFile][];
|
||
|
|
}) {
|
||
|
|
const localize = useLocalize();
|
||
|
|
const { setFilesLoading } = useChatContext();
|
||
|
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
||
|
|
const [files, setFiles] = useState<Map<string, ExtendedFile>>(new Map());
|
||
|
|
const { data: fileConfig = defaultFileConfig } = useGetFileConfig({
|
||
|
|
select: (data) => mergeFileConfig(data),
|
||
|
|
});
|
||
|
|
const { handleFileChange } = useFileHandling({
|
||
|
|
overrideEndpoint: EModelEndpoint.agents,
|
||
|
|
additionalMetadata: { agent_id, tool_resource },
|
||
|
|
fileSetter: setFiles,
|
||
|
|
});
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
if (_files) {
|
||
|
|
setFiles(new Map(_files));
|
||
|
|
}
|
||
|
|
}, [_files]);
|
||
|
|
|
||
|
|
const endpointFileConfig = fileConfig.endpoints[EModelEndpoint.agents];
|
||
|
|
|
||
|
|
if (endpointFileConfig?.disabled) {
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
|
||
|
|
const handleButtonClick = () => {
|
||
|
|
// necessary to reset the input
|
||
|
|
if (fileInputRef.current) {
|
||
|
|
fileInputRef.current.value = '';
|
||
|
|
}
|
||
|
|
fileInputRef.current?.click();
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="mb-2 w-full">
|
||
|
|
<div className="flex flex-col gap-4">
|
||
|
|
<div className="text-token-text-tertiary rounded-lg text-xs">
|
||
|
|
{localize('com_assistants_code_interpreter_files')}
|
||
|
|
</div>
|
||
|
|
<FileRow
|
||
|
|
files={files}
|
||
|
|
setFiles={setFiles}
|
||
|
|
agent_id={agent_id}
|
||
|
|
tool_resource={tool_resource}
|
||
|
|
setFilesLoading={setFilesLoading}
|
||
|
|
Wrapper={({ children }) => <div className="flex flex-wrap gap-2">{children}</div>}
|
||
|
|
/>
|
||
|
|
<div>
|
||
|
|
<button
|
||
|
|
type="button"
|
||
|
|
disabled={!agent_id}
|
||
|
|
className="btn btn-neutral border-token-border-light relative h-8 w-full rounded-lg font-medium"
|
||
|
|
onClick={handleButtonClick}
|
||
|
|
>
|
||
|
|
<div className="flex w-full items-center justify-center gap-2">
|
||
|
|
<input
|
||
|
|
multiple={true}
|
||
|
|
type="file"
|
||
|
|
style={{ display: 'none' }}
|
||
|
|
tabIndex={-1}
|
||
|
|
ref={fileInputRef}
|
||
|
|
disabled={!agent_id}
|
||
|
|
onChange={handleFileChange}
|
||
|
|
/>
|
||
|
|
{localize('com_ui_upload_files')}
|
||
|
|
</div>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|