mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-12 03:29:02 +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">
|
||||
<b>{t('backendServiceApi')}</b>
|
||||
<Paragraph
|
||||
copyable={{ text: `${location.origin}/api/v1/` }}
|
||||
copyable={{ text: `${location.origin}` }}
|
||||
className={styles.apiLinkText}
|
||||
>
|
||||
{location.origin}/api/v1/
|
||||
{location.origin}
|
||||
</Paragraph>
|
||||
</Flex>
|
||||
</Card>
|
||||
|
@ -937,7 +937,7 @@ The above is the content you need to summarize.`,
|
||||
markdown: 'Markdown',
|
||||
content: 'Content',
|
||||
},
|
||||
extractType: 'extractType',
|
||||
extractType: 'Extract type',
|
||||
info: 'Info',
|
||||
history: 'History',
|
||||
financials: 'Financials',
|
||||
|
@ -505,6 +505,10 @@ export const initialNoteValues = {
|
||||
text: '',
|
||||
};
|
||||
|
||||
export const initialCrawlerValues = {
|
||||
extract_type: 'markdown',
|
||||
};
|
||||
|
||||
export const CategorizeAnchorPointPositions = [
|
||||
{ top: 1, right: 34 },
|
||||
{ top: 8, right: 18 },
|
||||
|
@ -41,6 +41,7 @@ import {
|
||||
initialBingValues,
|
||||
initialCategorizeValues,
|
||||
initialConcentratorValues,
|
||||
initialCrawlerValues,
|
||||
initialDeepLValues,
|
||||
initialDuckValues,
|
||||
initialExeSqlValues,
|
||||
@ -129,6 +130,7 @@ export const useInitializeOperatorParams = () => {
|
||||
[Operator.Concentrator]: initialConcentratorValues,
|
||||
[Operator.TuShare]: initialTuShareValues,
|
||||
[Operator.Note]: initialNoteValues,
|
||||
[Operator.Crawler]: initialCrawlerValues,
|
||||
};
|
||||
}, [llmId]);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user