Files
big-agi/components/dialogs/ContentReducerModal.tsx
T
2023-04-07 16:48:04 -07:00

149 lines
4.6 KiB
TypeScript

import * as React from 'react';
import { Alert, Box, Button, Divider, FormControl, FormHelperText, FormLabel, Modal, ModalClose, ModalDialog, Slider, Textarea, Typography } from '@mui/joy';
import { ChatModelId } from '@/lib/data';
import { Section } from '@/components/dialogs/SettingsModal';
import { TokenBadge } from '@/components/util/TokenBadge';
import { countModelTokens } from '@/lib/tokens';
function TokenUsageAlert({ usedTokens, tokenLimit }: { usedTokens: number, tokenLimit: number }) {
const remainingTokens = tokenLimit - usedTokens;
const message = remainingTokens >= 1
? `${usedTokens.toLocaleString()} reduced tokens and ${remainingTokens.toLocaleString()} tokens remaining.`
: `⚠️ These ${usedTokens.toLocaleString()} tokens go over budget by ${(-remainingTokens).toLocaleString()} tokens.`;
return <Alert variant='soft' color={remainingTokens >= 1 ? 'primary' : 'danger'} sx={{ mt: 1 }}>{message}</Alert>;
}
/**
* Dialog to compress a PDF
*/
export function ContentReducerModal(props: {
initialText: string,
initialTokens: number,
tokenLimit: number,
chatModelId: ChatModelId,
onClose: () => void,
onReducedText: (text: string) => void,
}) {
// state
const [compressionLevel, setCompressionLevel] = React.useState(3);
const [reducedText, setReducedText] = React.useState('');
// external state
// ...
// derived state
const reducedTokens = countModelTokens(reducedText, props.chatModelId, 'content reducer reduce');
const remainingTokens = props.tokenLimit - reducedTokens;
const handleCompressionLevelChange = (event: Event, newValue: number | number[]) =>
setCompressionLevel(newValue as number);
const handlePreviewClicked = React.useCallback(() => {
// just pass Input -> Output for now
setReducedText(props.initialText);
}, [props.initialText]);
const handleUseReducedTextClicked = () =>
props.onReducedText(reducedText);
// upon load, click the preview button
React.useEffect(handlePreviewClicked, [handlePreviewClicked]);
return (
<Modal open onClose={props.onClose}>
<ModalDialog
layout='center' variant='outlined' color='neutral'
sx={{
minWidth: 320,
}}>
<ModalClose />
<Typography level='h5'>Content Reducer [Pre-Alpha]</Typography>
<Divider sx={{ my: 2 }} />
<Section title='Inputs'>
<Typography level='body2'>
Text: {props.initialTokens.toLocaleString()} tokens
</Typography>
<Typography level='body2'>
Limit: {props.tokenLimit.toLocaleString()} tokens
</Typography>
</Section>
{/* Example User settings */}
<Section title='Settings'>
<FormControl orientation='horizontal' sx={{ justifyContent: 'space-between' }}>
<Box sx={{ minWidth: 120 }}>
<FormLabel>Compression</FormLabel>
<FormHelperText>{compressionLevel < 2 ? 'Low' : compressionLevel > 4 ? 'High' : 'Medium'}</FormHelperText>
</Box>
<Slider
aria-label='Model Temperature' color='neutral'
min={1} max={5} defaultValue={3}
value={compressionLevel} onChange={handleCompressionLevelChange}
valueLabelDisplay='auto'
sx={{ py: 1, mt: 1.1 }}
/>
</FormControl>
<Box sx={{ display: 'flex', justifyContent: 'flex-end' }}>
<Button variant='solid' color='primary' onClick={handlePreviewClicked}>
Preview
</Button>
</Box>
</Section>
<Section title='Outputs'>
{/* Readonly output and token counter */}
<Box sx={{ flexGrow: 1, position: 'relative', minWidth: '30vw' }}>
<Textarea
readOnly
variant='soft' autoFocus
minRows={4} maxRows={8}
value={reducedText}
sx={{
fontSize: '14px',
lineHeight: 1.75,
}} />
<TokenBadge directTokens={reducedTokens} tokenLimit={props.tokenLimit} absoluteBottomRight />
</Box>
{!!reducedTokens && <TokenUsageAlert usedTokens={reducedTokens} tokenLimit={props.tokenLimit} />}
</Section>
<Box sx={{ mt: 4, display: 'flex', gap: 1, justifyContent: 'flex-end' }}>
<Button variant='soft' color='neutral' onClick={props.onClose}>
Close
</Button>
<Button variant='solid' color={remainingTokens >= 1 ? 'primary' : 'danger'} disabled={!reducedText} onClick={handleUseReducedTextClicked}>
Use Reduced Text
</Button>
</Box>
</ModalDialog>
</Modal>
);
}