feat: add arxiv operator #918 (#1683)

### What problem does this PR solve?

feat: add arxiv operator #918

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-07-24 11:36:23 +08:00
committed by GitHub
parent 4b195cc14c
commit 7e60800c95
12 changed files with 115 additions and 5 deletions

View File

@ -4,6 +4,7 @@ import { Drawer, Flex, Form, Input } from 'antd';
import { useEffect } from 'react';
import { Node } from 'reactflow';
import AnswerForm from '../answer-form';
import ArxivForm from '../arxiv-form';
import BaiduForm from '../baidu-form';
import BeginForm from '../begin-form';
import CategorizeForm from '../categorize-form';
@ -40,6 +41,7 @@ const FormMap = {
[Operator.KeywordExtract]: KeywordExtractForm,
[Operator.Wikipedia]: WikipediaForm,
[Operator.PubMed]: PubMedForm,
[Operator.Arxiv]: ArxivForm,
};
const EmptyContent = () => <div>empty</div>;