fix(person_info): 添加模型配置非空断言以确保初始化安全
This commit is contained in:
@@ -56,6 +56,7 @@ class PersonInfoManager:
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
"""初始化PersonInfoManager"""
|
"""初始化PersonInfoManager"""
|
||||||
# 移除self.person_name_list缓存,统一使用数据库缓存系统
|
# 移除self.person_name_list缓存,统一使用数据库缓存系统
|
||||||
|
assert model_config is not None
|
||||||
self.qv_name_llm = LLMRequest(model_set=model_config.model_task_config.utils, request_type="relation.qv_name")
|
self.qv_name_llm = LLMRequest(model_set=model_config.model_task_config.utils, request_type="relation.qv_name")
|
||||||
# try:
|
# try:
|
||||||
# async with get_db_session() as session:
|
# async with get_db_session() as session:
|
||||||
|
|||||||
Reference in New Issue
Block a user