Skip to content

Commit

Permalink
feat: add llm Select to KeywordExtractForm infiniflow#918
Browse files Browse the repository at this point in the history
  • Loading branch information
cike8899 committed Jul 12, 2024
1 parent a5a617b commit ae3d1ac
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 7 deletions.
8 changes: 6 additions & 2 deletions web/src/components/top-n-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ type FieldType = {
top_n?: number;
};

const TopNItem = () => {
interface IProps {
initialValue?: number;
}

const TopNItem = ({ initialValue = 8 }: IProps) => {
const { t } = useTranslate('chat');

return (
<Form.Item<FieldType>
label={t('topN')}
name={'top_n'}
initialValue={8}
initialValue={initialValue}
tooltip={t('topNTip')}
>
<Slider max={30} />
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/flow/baidu-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const BaiduForm = ({ onValuesChange, form }: IOperatorForm) => {
form={form}
onValuesChange={onValuesChange}
>
<TopNItem></TopNItem>
<TopNItem initialValue={10}></TopNItem>
</Form>
);
};
Expand Down
7 changes: 7 additions & 0 deletions web/src/pages/flow/canvas/node/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,10 @@
text-align: center;
// align-items: center;
}

.jsonView {
word-wrap: break-word;
overflow: auto;
max-width: 300px;
max-height: 500px;
}
4 changes: 3 additions & 1 deletion web/src/pages/flow/canvas/node/popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import 'react18-json-view/src/style.css';
import { Operator } from '../../constant';
import { useReplaceIdWithText } from '../../hooks';

import styles from './index.less';

interface IProps extends React.PropsWithChildren {
nodeId: string;
}
Expand All @@ -32,7 +34,7 @@ const NodePopover = ({ children, nodeId }: IProps) => {
<JsonView
src={replacedOutput}
displaySize={30}
style={{ maxWidth: 300, maxHeight: 500 }}
className={styles.jsonView}
/>
</div>
) : undefined;
Expand Down
6 changes: 6 additions & 0 deletions web/src/pages/flow/constant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ export const initialMessageValues = {
messages: [],
};

export const initialKeywordExtractValues = {
...initialLlmBaseValues,
top_n: 1,
};

export const initialFormValuesMap = {
[Operator.Begin]: initialBeginValues,
[Operator.Retrieval]: initialRetrievalValues,
Expand All @@ -197,6 +202,7 @@ export const initialFormValuesMap = {
[Operator.Relevant]: initialRelevantValues,
[Operator.RewriteQuestion]: initialRewriteQuestionValues,
[Operator.Message]: initialMessageValues,
[Operator.KeywordExtract]: initialKeywordExtractValues,
};

export const CategorizeAnchorPointPositions = [
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/flow/duckduckgo-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const DuckDuckGoForm = ({ onValuesChange, form }: IOperatorForm) => {
form={form}
onValuesChange={onValuesChange}
>
<TopNItem></TopNItem>
<TopNItem initialValue={10}></TopNItem>
<Form.Item
label={t('channel')}
name={'channel'}
Expand Down
4 changes: 3 additions & 1 deletion web/src/pages/flow/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ export const useSaveGraphBeforeOpeningDebugDrawer = (show: () => void) => {
const { id } = useParams();
const { saveGraph } = useSaveGraph();
const { resetFlow } = useResetFlow();
const { refetch } = useFetchFlow();
const { send } = useSendMessageWithSse(api.runCanvas);
const handleRun = useCallback(async () => {
const saveRet = await saveGraph();
Expand All @@ -373,6 +374,7 @@ export const useSaveGraphBeforeOpeningDebugDrawer = (show: () => void) => {
const resetRet = await resetFlow();
// After resetting, all previous messages will be cleared.
if (resetRet?.retcode === 0) {
refetch();
// fetch prologue
const sendRet = await send({ id });
if (receiveMessageError(sendRet)) {
Expand All @@ -382,7 +384,7 @@ export const useSaveGraphBeforeOpeningDebugDrawer = (show: () => void) => {
}
}
}
}, [saveGraph, resetFlow, id, send, show]);
}, [saveGraph, resetFlow, id, send, show, refetch]);

return handleRun;
};
Expand Down
16 changes: 15 additions & 1 deletion web/src/pages/flow/keyword-extract-form/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import LLMSelect from '@/components/llm-select';
import TopNItem from '@/components/top-n-item';
import { useTranslate } from '@/hooks/commonHooks';
import { Form } from 'antd';
import { useSetLlmSetting } from '../hooks';
import { IOperatorForm } from '../interface';

const KeywordExtractForm = ({ onValuesChange, form }: IOperatorForm) => {
const { t } = useTranslate('flow');

useSetLlmSetting(form);

return (
<Form
name="basic"
Expand All @@ -12,7 +19,14 @@ const KeywordExtractForm = ({ onValuesChange, form }: IOperatorForm) => {
form={form}
onValuesChange={onValuesChange}
>
<TopNItem></TopNItem>
<Form.Item
name={'llm_id'}
label={t('model', { keyPrefix: 'chat' })}
tooltip={t('modelTip', { keyPrefix: 'chat' })}
>
<LLMSelect></LLMSelect>
</Form.Item>
<TopNItem initialValue={1}></TopNItem>
</Form>
);
};
Expand Down

0 comments on commit ae3d1ac

Please sign in to comment.