mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-13 03:39:05 +08:00
### What problem does this PR solve? feat: Replace crawler icon #2915 ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):
This commit is contained in:
parent
ac26d09a59
commit
609cfa7b5f
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 5.6 KiB |
@ -22,10 +22,10 @@ const BackendServiceApi = ({ show }: { show(): void }) => {
|
|||||||
<Flex gap={8} align="center">
|
<Flex gap={8} align="center">
|
||||||
<b>{t('backendServiceApi')}</b>
|
<b>{t('backendServiceApi')}</b>
|
||||||
<Paragraph
|
<Paragraph
|
||||||
copyable={{ text: `${location.origin}/api/v1/` }}
|
copyable={{ text: `${location.origin}` }}
|
||||||
className={styles.apiLinkText}
|
className={styles.apiLinkText}
|
||||||
>
|
>
|
||||||
{location.origin}/api/v1/
|
{location.origin}
|
||||||
</Paragraph>
|
</Paragraph>
|
||||||
</Flex>
|
</Flex>
|
||||||
</Card>
|
</Card>
|
||||||
|
@ -937,7 +937,7 @@ The above is the content you need to summarize.`,
|
|||||||
markdown: 'Markdown',
|
markdown: 'Markdown',
|
||||||
content: 'Content',
|
content: 'Content',
|
||||||
},
|
},
|
||||||
extractType: 'extractType',
|
extractType: 'Extract type',
|
||||||
info: 'Info',
|
info: 'Info',
|
||||||
history: 'History',
|
history: 'History',
|
||||||
financials: 'Financials',
|
financials: 'Financials',
|
||||||
|
@ -505,6 +505,10 @@ export const initialNoteValues = {
|
|||||||
text: '',
|
text: '',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const initialCrawlerValues = {
|
||||||
|
extract_type: 'markdown',
|
||||||
|
};
|
||||||
|
|
||||||
export const CategorizeAnchorPointPositions = [
|
export const CategorizeAnchorPointPositions = [
|
||||||
{ top: 1, right: 34 },
|
{ top: 1, right: 34 },
|
||||||
{ top: 8, right: 18 },
|
{ top: 8, right: 18 },
|
||||||
|
@ -41,6 +41,7 @@ import {
|
|||||||
initialBingValues,
|
initialBingValues,
|
||||||
initialCategorizeValues,
|
initialCategorizeValues,
|
||||||
initialConcentratorValues,
|
initialConcentratorValues,
|
||||||
|
initialCrawlerValues,
|
||||||
initialDeepLValues,
|
initialDeepLValues,
|
||||||
initialDuckValues,
|
initialDuckValues,
|
||||||
initialExeSqlValues,
|
initialExeSqlValues,
|
||||||
@ -129,6 +130,7 @@ export const useInitializeOperatorParams = () => {
|
|||||||
[Operator.Concentrator]: initialConcentratorValues,
|
[Operator.Concentrator]: initialConcentratorValues,
|
||||||
[Operator.TuShare]: initialTuShareValues,
|
[Operator.TuShare]: initialTuShareValues,
|
||||||
[Operator.Note]: initialNoteValues,
|
[Operator.Note]: initialNoteValues,
|
||||||
|
[Operator.Crawler]: initialCrawlerValues,
|
||||||
};
|
};
|
||||||
}, [llmId]);
|
}, [llmId]);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user