fix:
1. 修复登录界面文字被遮挡问题 2. 大字模式关闭后显示异常问题 3. 重新调整大字模式是否开启时的字体显示效果
This commit is contained in:
@@ -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={} "
|
||||
|
||||
Reference in New Issue
Block a user