Skip to content

Commit

Permalink
feat: add graph tab to header #918 (#1374)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

feat: add graph tab to header #918

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
  • Loading branch information
cike8899 authored Jul 4, 2024
1 parent 258c9ea commit 3b50389
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 18 deletions.
2 changes: 1 addition & 1 deletion web/src/hooks/flow-hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const EmptyDsl = {
graph: {
nodes: [
{
id: 'Begin',
id: 'begin',
type: 'beginNode',
position: {
x: 50,
Expand Down
2 changes: 2 additions & 0 deletions web/src/layouts/components/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { useLocation } from 'umi';
import Toolbar from '../right-toolbar';

import { useFetchAppConf } from '@/hooks/logicHooks';
import { NodeIndexOutlined } from '@ant-design/icons';
import styles from './index.less';

const { Header } = Layout;
Expand All @@ -26,6 +27,7 @@ const RagHeader = () => {
() => [
{ path: '/knowledge', name: t('knowledgeBase'), icon: KnowledgeBaseIcon },
{ path: '/chat', name: t('chat'), icon: StarIon },
{ path: '/flow', name: t('flow'), icon: NodeIndexOutlined },
{ path: '/file', name: t('fileManager'), icon: FileIcon },
],
[t],
Expand Down
1 change: 1 addition & 0 deletions web/src/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export default {
setting: '用户设置',
logout: '登出',
fileManager: 'File Management',
flow: 'Graph',
},
knowledgeList: {
welcome: 'Welcome back',
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/flow/categorize-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const CategorizeForm = ({ form, onValuesChange, node }: IOperatorForm) => {
return (
<Form
name="basic"
labelCol={{ span: 9 }}
wrapperCol={{ span: 15 }}
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
autoComplete="off"
form={form}
onValuesChange={handleValuesChange}
Expand Down
36 changes: 30 additions & 6 deletions web/src/pages/flow/constant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,27 +126,51 @@ export const initialBeginValues = {
prologue: `Hi! I'm your assistant, what can I do for you?`,
};

export const initialGenerateValues = {
// parameters: ModelVariableType.Precise,
// temperatureEnabled: true,
const initialLlmBaseValues = {
temperature: 0.1,
top_p: 0.3,
frequency_penalty: 0.7,
presence_penalty: 0.4,
max_tokens: 512,
max_tokens: 256,
};

export const initialGenerateValues = {
// parameters: ModelVariableType.Precise,
// temperatureEnabled: true,
...initialLlmBaseValues,
prompt: `Please summarize the following paragraphs. Be careful with the numbers, do not make things up. Paragraphs as following:
{cluster_content}
The above is the content you need to summarize.`,
cite: true,
};

export const initialRewriteQuestionValues = {
...initialLlmBaseValues,
loop: 1,
};

export const initialRelevantValues = {
...initialLlmBaseValues,
};

export const initialCategorizeValues = {
...initialLlmBaseValues,
category_description: {},
};

export const initialMessageValues = {
messages: [],
};

export const initialFormValuesMap = {
[Operator.Begin]: initialBeginValues,
[Operator.Retrieval]: initialRetrievalValues,
[Operator.Generate]: initialGenerateValues,
[Operator.Answer]: {},
[Operator.Categorize]: {},
[Operator.Relevant]: {},
[Operator.Categorize]: initialCategorizeValues,
[Operator.Relevant]: initialRelevantValues,
[Operator.RewriteQuestion]: initialRewriteQuestionValues,
[Operator.Message]: initialMessageValues,
};

export const CategorizeAnchorPointPositions = [
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/flow/generate-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const GenerateForm = ({ onValuesChange, form }: IOperatorForm) => {
return (
<Form
name="basic"
labelCol={{ span: 9 }}
wrapperCol={{ span: 15 }}
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
autoComplete="off"
form={form}
onValuesChange={onValuesChange}
Expand Down
6 changes: 2 additions & 4 deletions web/src/pages/flow/relevant-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ const RelevantForm = ({ onValuesChange, form, node }: IOperatorForm) => {
return (
<Form
name="basic"
labelCol={{ span: 8 }}
wrapperCol={{ span: 16 }}
style={{ maxWidth: 600 }}
initialValues={{ remember: true }}
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
onValuesChange={onValuesChange}
autoComplete="off"
form={form}
Expand Down
10 changes: 7 additions & 3 deletions web/src/pages/flow/rewrite-question-form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const RewriteQuestionForm = ({ onValuesChange, form }: IOperatorForm) => {
return (
<Form
name="basic"
labelCol={{ span: 8 }}
wrapperCol={{ span: 16 }}
labelCol={{ span: 6 }}
wrapperCol={{ span: 18 }}
onValuesChange={onValuesChange}
autoComplete="off"
form={form}
Expand All @@ -24,7 +24,11 @@ const RewriteQuestionForm = ({ onValuesChange, form }: IOperatorForm) => {
>
<LLMSelect></LLMSelect>
</Form.Item>
<Form.Item label={t('loop', { keyPrefix: 'flow' })} name="loop">
<Form.Item
label={t('loop', { keyPrefix: 'flow' })}
name="loop"
initialValue={1}
>
<InputNumber />
</Form.Item>
</Form>
Expand Down

0 comments on commit 3b50389

Please sign in to comment.