Dateien nach "app/core" hochladen
All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 3s

This commit is contained in:
Lars 2025-11-08 17:55:39 +01:00
parent 315a1c0945
commit 70b3169e7f

View File

@ -254,6 +254,12 @@ def make_chunk_payloads(
if note_title is not None:
pl["title"] = note_title
if note_tags is not None:
# propagate optional retriever_weight from frontmatter
if frontmatter.get("retriever_weight") is not None:
try:
pl["retriever_weight"] = float(frontmatter.get("retriever_weight"))
except Exception:
pass
pl["tags"] = note_tags
if token_counts[i] is not None:
pl["token_count"] = int(token_counts[i])