1. 修复登录界面文字被遮挡问题
2. 大字模式关闭后显示异常问题
3. 重新调整大字模式是否开启时的字体显示效果
This commit is contained in:
yangshilin
2026-04-10 20:35:57 +08:00
parent abf8497c2e
commit 17b9fa3466
27 changed files with 390 additions and 161 deletions

View File

@@ -363,9 +363,7 @@ def ingest_transcripts_batch_sync(
if not text:
continue
primary_mid = (
primary_user_message_id_from_lineage(lineage_json)
if lineage_json
else None
primary_user_message_id_from_lineage(lineage_json) if lineage_json else None
)
source = create_source_sync(
session,
@@ -419,9 +417,7 @@ def ingest_transcripts_batch_sync(
)
emb_ok = (
embedding_provider.is_available()
if embedding_provider is not None
else False
embedding_provider.is_available() if embedding_provider is not None else False
)
logger.info(
"event=memory_ingest_batch_done user_id={} sources={} chunks={} "