fix(backend): read page_content on extension document ingestion

This commit is contained in:
CREDO23 2026-07-06 03:17:25 +02:00
parent 479ca3bbee
commit cb22cc4bfc

View file

@ -72,7 +72,7 @@ async def add_extension_received_document(
), ),
( (
"CONTENT", "CONTENT",
["FORMAT: markdown", "TEXT_START", content.pageContent, "TEXT_END"], ["FORMAT: markdown", "TEXT_START", content.page_content, "TEXT_END"],
), ),
] ]
@ -126,7 +126,7 @@ async def add_extension_received_document(
summary_embedding = embed_text(summary_content) summary_embedding = embed_text(summary_content)
# Process chunks # Process chunks
chunks = await create_document_chunks(content.pageContent) chunks = await create_document_chunks(content.page_content)
# Update or create document # Update or create document
if existing_document: if existing_document: