mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
rename files with the same name
This commit is contained in:
parent
73445d97e7
commit
3fee82eaa5
@ -6,8 +6,8 @@
|
|||||||
import becca from '../../../becca/becca.js';
|
import becca from '../../../becca/becca.js';
|
||||||
import { getNoteContent, formatNoteContent, sanitizeHtmlContent } from './note_content.js';
|
import { getNoteContent, formatNoteContent, sanitizeHtmlContent } from './note_content.js';
|
||||||
import { detectLanguage, extractCodeStructure } from './code_handlers.js';
|
import { detectLanguage, extractCodeStructure } from './code_handlers.js';
|
||||||
import { chunkContent, semanticChunking } from './chunking.js';
|
import { chunkContent, semanticChunking } from './content_chunking.js';
|
||||||
import type { ContentChunk, ChunkOptions } from './chunking.js';
|
import type { ContentChunk, ChunkOptions } from './content_chunking.js';
|
||||||
import { summarizeContent, extractKeyPoints } from './summarization.js';
|
import { summarizeContent, extractKeyPoints } from './summarization.js';
|
||||||
import { getParentNotes, getParentContext, getChildContext, getLinkedNotesContext } from './hierarchy.js';
|
import { getParentNotes, getParentContext, getChildContext, getLinkedNotesContext } from './hierarchy.js';
|
||||||
import { getSemanticContext } from './semantic_context.js';
|
import { getSemanticContext } from './semantic_context.js';
|
||||||
|
@ -19,6 +19,6 @@ export interface ChunkingOperations {
|
|||||||
* This function is implemented to break circular dependencies
|
* This function is implemented to break circular dependencies
|
||||||
*/
|
*/
|
||||||
export async function getChunkingOperations(): Promise<ChunkingOperations> {
|
export async function getChunkingOperations(): Promise<ChunkingOperations> {
|
||||||
const chunking = await import('./chunking.js');
|
const chunking = await import('./chunking_processor.js');
|
||||||
return chunking;
|
return chunking;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user