mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 08:56:47 +08:00
Fix:Metadata saving, copywriting and other related issues (#12169)
### What problem does this PR solve? Fix:Bugs Fixed - Text overflow issues that caused rendering problems - Metadata saving, copywriting and other related issues ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -43,6 +43,18 @@ export interface IParserConfig {
|
||||
task_page_size?: number;
|
||||
raptor?: Raptor;
|
||||
graphrag?: GraphRag;
|
||||
image_context_window?: number;
|
||||
mineru_parse_method?: 'auto' | 'txt' | 'ocr';
|
||||
mineru_formula_enable?: boolean;
|
||||
mineru_table_enable?: boolean;
|
||||
mineru_lang?: string;
|
||||
entity_types?: string[];
|
||||
metadata?: Array<{
|
||||
key?: string;
|
||||
description?: string;
|
||||
enum?: string[];
|
||||
}>;
|
||||
enable_metadata?: boolean;
|
||||
}
|
||||
|
||||
interface Raptor {
|
||||
|
||||
Reference in New Issue
Block a user