Completion Regenerate Button
This commit is contained in:
parent
2fe7a23049
commit
b56a55e81d
@ -188,5 +188,6 @@
|
|||||||
"New": "新建",
|
"New": "新建",
|
||||||
"user": "用户",
|
"user": "用户",
|
||||||
"assistant": "AI",
|
"assistant": "AI",
|
||||||
"system": "系统"
|
"system": "系统",
|
||||||
|
"Regenerate": "重新生成"
|
||||||
}
|
}
|
@ -11,6 +11,8 @@ import { fetchEventSource } from '@microsoft/fetch-event-source';
|
|||||||
import { toast } from 'react-toastify';
|
import { toast } from 'react-toastify';
|
||||||
import { DialogButton } from '../components/DialogButton';
|
import { DialogButton } from '../components/DialogButton';
|
||||||
import { PresetsButton } from './PresetsManager/PresetsButton';
|
import { PresetsButton } from './PresetsManager/PresetsButton';
|
||||||
|
import { ToolTipButton } from '../components/ToolTipButton';
|
||||||
|
import { ArrowSync20Regular } from '@fluentui/react-icons';
|
||||||
|
|
||||||
export type CompletionParams = Omit<ApiParameters, 'apiPort'> & {
|
export type CompletionParams = Omit<ApiParameters, 'apiPort'> & {
|
||||||
stop: string,
|
stop: string,
|
||||||
@ -150,6 +152,7 @@ const CompletionPanel: FC = observer(() => {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const setPreset = (preset: CompletionPreset) => {
|
const setPreset = (preset: CompletionPreset) => {
|
||||||
|
commonStore.setCompletionSubmittedPrompt(t(preset.prompt));
|
||||||
commonStore.setCompletionPreset({
|
commonStore.setCompletionPreset({
|
||||||
...preset,
|
...preset,
|
||||||
prompt: t(preset.prompt)
|
prompt: t(preset.prompt)
|
||||||
@ -181,6 +184,8 @@ const CompletionPanel: FC = observer(() => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const onSubmit = (prompt: string) => {
|
const onSubmit = (prompt: string) => {
|
||||||
|
commonStore.setCompletionSubmittedPrompt(prompt);
|
||||||
|
|
||||||
if (commonStore.status.status === ModelStatus.Offline && !commonStore.settings.apiUrl) {
|
if (commonStore.status.status === ModelStatus.Offline && !commonStore.settings.apiUrl) {
|
||||||
toast(t('Please click the button in the top right corner to start the model'), { type: 'warning' });
|
toast(t('Please click the button in the top right corner to start the model'), { type: 'warning' });
|
||||||
commonStore.setCompletionGenerating(false);
|
commonStore.setCompletionGenerating(false);
|
||||||
@ -259,7 +264,10 @@ const CompletionPanel: FC = observer(() => {
|
|||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
className="grow"
|
className="grow"
|
||||||
value={prompt}
|
value={prompt}
|
||||||
onChange={(e) => setPrompt(e.target.value)}
|
onChange={(e) => {
|
||||||
|
commonStore.setCompletionSubmittedPrompt(e.target.value);
|
||||||
|
setPrompt(e.target.value);
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
<div className="flex flex-col gap-1 max-h-48 sm:max-w-sm sm:max-h-full">
|
<div className="flex flex-col gap-1 max-h-48 sm:max-w-sm sm:max-h-full">
|
||||||
<div className="flex gap-2">
|
<div className="flex gap-2">
|
||||||
@ -368,6 +376,12 @@ const CompletionPanel: FC = observer(() => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="grow" />
|
<div className="grow" />
|
||||||
<div className="flex justify-between gap-2">
|
<div className="flex justify-between gap-2">
|
||||||
|
<ToolTipButton desc={t('Regenerate')} icon={<ArrowSync20Regular />} onClick={() => {
|
||||||
|
completionSseController?.abort();
|
||||||
|
commonStore.setCompletionGenerating(true);
|
||||||
|
setPrompt(commonStore.completionSubmittedPrompt);
|
||||||
|
onSubmit(commonStore.completionSubmittedPrompt);
|
||||||
|
}} />
|
||||||
<DialogButton className="grow" text={t('Reset')} title={t('Reset')}
|
<DialogButton className="grow" text={t('Reset')} title={t('Reset')}
|
||||||
contentText={t('Are you sure you want to reset this page? It cannot be undone.')}
|
contentText={t('Are you sure you want to reset this page? It cannot be undone.')}
|
||||||
onConfirm={() => {
|
onConfirm={() => {
|
||||||
|
@ -52,6 +52,7 @@ class CommonStore {
|
|||||||
// completion
|
// completion
|
||||||
completionPreset: CompletionPreset | null = null;
|
completionPreset: CompletionPreset | null = null;
|
||||||
completionGenerating: boolean = false;
|
completionGenerating: boolean = false;
|
||||||
|
completionSubmittedPrompt: string = '';
|
||||||
// configs
|
// configs
|
||||||
currentModelConfigIndex: number = 0;
|
currentModelConfigIndex: number = 0;
|
||||||
modelConfigs: ModelConfig[] = [];
|
modelConfigs: ModelConfig[] = [];
|
||||||
@ -221,6 +222,10 @@ class CommonStore {
|
|||||||
setActivePreset(value: Preset) {
|
setActivePreset(value: Preset) {
|
||||||
this.activePreset = value;
|
this.activePreset = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setCompletionSubmittedPrompt(value: string) {
|
||||||
|
this.completionSubmittedPrompt = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default new CommonStore();
|
export default new CommonStore();
|
Loading…
x
Reference in New Issue
Block a user