2024-08-15 09:17:36 +08:00
|
|
|
|
#
|
|
|
|
|
|
# Copyright 2024 The InfiniFlow Authors. All Rights Reserved.
|
|
|
|
|
|
#
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
|
#
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
#
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
#
|
2025-12-11 17:38:17 +08:00
|
|
|
|
import asyncio
|
2024-11-14 17:13:48 +08:00
|
|
|
|
import logging
|
2024-08-15 09:17:36 +08:00
|
|
|
|
import json
|
|
|
|
|
|
import os
|
|
|
|
|
|
import time
|
|
|
|
|
|
import uuid
|
|
|
|
|
|
from copy import deepcopy
|
|
|
|
|
|
|
2026-02-27 12:55:51 +01:00
|
|
|
|
from peewee import IntegrityError
|
|
|
|
|
|
|
2025-11-05 08:01:39 +08:00
|
|
|
|
from api.db import UserTenantRole
|
2026-03-05 17:27:17 +08:00
|
|
|
|
from api.db.db_models import init_database_tables as init_web_db, LLMFactories, LLM, TenantLLM, Knowledgebase, Dialog, Memory
|
2024-08-15 09:17:36 +08:00
|
|
|
|
from api.db.services import UserService
|
|
|
|
|
|
from api.db.services.canvas_service import CanvasTemplateService
|
|
|
|
|
|
from api.db.services.document_service import DocumentService
|
|
|
|
|
|
from api.db.services.knowledgebase_service import KnowledgebaseService
|
2026-03-05 17:27:17 +08:00
|
|
|
|
from api.db.services.memory_service import MemoryService
|
2025-08-13 16:41:01 +08:00
|
|
|
|
from api.db.services.tenant_llm_service import LLMFactoriesService, TenantLLMService
|
|
|
|
|
|
from api.db.services.llm_service import LLMService, LLMBundle, get_init_tenant_llm
|
2024-08-15 09:17:36 +08:00
|
|
|
|
from api.db.services.user_service import TenantService, UserTenantService
|
2026-01-04 14:21:39 +08:00
|
|
|
|
from api.db.services.system_settings_service import SystemSettingsService
|
2026-03-05 17:27:17 +08:00
|
|
|
|
from api.db.services.dialog_service import DialogService
|
2026-01-23 16:56:03 +08:00
|
|
|
|
from api.db.joint_services.memory_message_service import init_message_id_sequence, init_memory_size_cache, fix_missing_tokenized_memory
|
2026-03-05 17:27:17 +08:00
|
|
|
|
from api.db.joint_services.tenant_model_service import get_tenant_default_model_by_type
|
2025-11-05 08:01:39 +08:00
|
|
|
|
from common.constants import LLMType
|
2025-11-02 21:05:28 +08:00
|
|
|
|
from common.file_utils import get_project_base_directory
|
2025-11-06 09:36:38 +08:00
|
|
|
|
from common import settings
|
2025-09-25 23:37:50 +08:00
|
|
|
|
from api.common.base64 import encode_to_base64
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
2025-11-24 19:02:08 +08:00
|
|
|
|
DEFAULT_SUPERUSER_NICKNAME = os.getenv("DEFAULT_SUPERUSER_NICKNAME", "admin")
|
|
|
|
|
|
DEFAULT_SUPERUSER_EMAIL = os.getenv("DEFAULT_SUPERUSER_EMAIL", "admin@ragflow.io")
|
|
|
|
|
|
DEFAULT_SUPERUSER_PASSWORD = os.getenv("DEFAULT_SUPERUSER_PASSWORD", "admin")
|
2024-09-25 18:30:27 +08:00
|
|
|
|
|
2025-11-24 19:02:08 +08:00
|
|
|
|
def init_superuser(nickname=DEFAULT_SUPERUSER_NICKNAME, email=DEFAULT_SUPERUSER_EMAIL, password=DEFAULT_SUPERUSER_PASSWORD, role=UserTenantRole.OWNER):
|
2026-02-27 12:55:51 +01:00
|
|
|
|
if UserService.query(email=email):
|
|
|
|
|
|
logging.info("User with email %s already exists, skipping initialization.", email)
|
|
|
|
|
|
return
|
|
|
|
|
|
|
2024-08-15 09:17:36 +08:00
|
|
|
|
user_info = {
|
|
|
|
|
|
"id": uuid.uuid1().hex,
|
2025-11-24 19:02:08 +08:00
|
|
|
|
"password": encode_to_base64(password),
|
|
|
|
|
|
"nickname": nickname,
|
2024-08-15 09:17:36 +08:00
|
|
|
|
"is_superuser": True,
|
2025-11-24 19:02:08 +08:00
|
|
|
|
"email": email,
|
2024-08-15 09:17:36 +08:00
|
|
|
|
"creator": "system",
|
|
|
|
|
|
"status": "1",
|
|
|
|
|
|
}
|
|
|
|
|
|
tenant = {
|
|
|
|
|
|
"id": user_info["id"],
|
|
|
|
|
|
"name": user_info["nickname"] + "‘s Kingdom",
|
2024-11-15 17:30:56 +08:00
|
|
|
|
"llm_id": settings.CHAT_MDL,
|
2025-11-06 09:36:38 +08:00
|
|
|
|
"embd_id": settings.EMBEDDING_MDL,
|
2024-11-15 17:30:56 +08:00
|
|
|
|
"asr_id": settings.ASR_MDL,
|
|
|
|
|
|
"parser_ids": settings.PARSERS,
|
2026-02-24 03:57:31 +01:00
|
|
|
|
"img2txt_id": settings.IMAGE2TEXT_MDL,
|
|
|
|
|
|
"rerank_id": settings.RERANK_MDL,
|
2024-08-15 09:17:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
usr_tenant = {
|
|
|
|
|
|
"tenant_id": user_info["id"],
|
|
|
|
|
|
"user_id": user_info["id"],
|
|
|
|
|
|
"invited_by": user_info["id"],
|
2025-11-24 19:02:08 +08:00
|
|
|
|
"role": role
|
2024-08-15 09:17:36 +08:00
|
|
|
|
}
|
2025-08-13 09:46:05 +08:00
|
|
|
|
|
2025-08-13 16:41:01 +08:00
|
|
|
|
tenant_llm = get_init_tenant_llm(user_info["id"])
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
2026-02-27 12:55:51 +01:00
|
|
|
|
try:
|
|
|
|
|
|
if not UserService.save(**user_info):
|
|
|
|
|
|
logging.error("can't init admin.")
|
|
|
|
|
|
return
|
|
|
|
|
|
except IntegrityError:
|
|
|
|
|
|
logging.info("User with email %s already exists, skipping.", email)
|
2024-08-15 09:17:36 +08:00
|
|
|
|
return
|
|
|
|
|
|
TenantService.insert(**tenant)
|
|
|
|
|
|
UserTenantService.insert(**usr_tenant)
|
|
|
|
|
|
TenantLLMService.insert_many(tenant_llm)
|
2024-11-14 17:13:48 +08:00
|
|
|
|
logging.info(
|
2025-12-10 19:08:45 +08:00
|
|
|
|
f"Super user initialized. email: {email},A default password has been set; changing the password after login is strongly recommended.")
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
2026-02-27 12:55:51 +01:00
|
|
|
|
if tenant["llm_id"]:
|
2026-03-05 17:27:17 +08:00
|
|
|
|
chat_model_config = get_tenant_default_model_by_type(tenant["id"], LLMType.CHAT)
|
|
|
|
|
|
chat_mdl = LLMBundle(tenant["id"], chat_model_config)
|
2026-02-27 12:55:51 +01:00
|
|
|
|
msg = asyncio.run(chat_mdl.async_chat(system="", history=[{"role": "user", "content": "Hello!"}], gen_conf={}))
|
|
|
|
|
|
if msg.find("ERROR: ") == 0:
|
|
|
|
|
|
logging.error("'{}' doesn't work. {}".format( tenant["llm_id"], msg))
|
|
|
|
|
|
|
|
|
|
|
|
if tenant["embd_id"]:
|
2026-03-05 17:27:17 +08:00
|
|
|
|
embd_model_config = get_tenant_default_model_by_type(tenant["id"], LLMType.EMBEDDING)
|
|
|
|
|
|
embd_mdl = LLMBundle(tenant["id"], embd_model_config)
|
2026-02-27 12:55:51 +01:00
|
|
|
|
v, c = embd_mdl.encode(["Hello!"])
|
|
|
|
|
|
if c == 0:
|
|
|
|
|
|
logging.error("'{}' doesn't work!".format(tenant["embd_id"]))
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def init_llm_factory():
|
2025-11-12 10:38:33 +08:00
|
|
|
|
LLMFactoriesService.filter_delete([1 == 1])
|
2025-08-13 09:46:05 +08:00
|
|
|
|
factory_llm_infos = settings.FACTORY_LLM_INFOS
|
2025-03-14 09:54:38 +08:00
|
|
|
|
for factory_llm_info in factory_llm_infos:
|
2025-03-14 11:45:44 +08:00
|
|
|
|
info = deepcopy(factory_llm_info)
|
|
|
|
|
|
llm_infos = info.pop("llm")
|
2024-08-15 09:17:36 +08:00
|
|
|
|
try:
|
2025-03-14 11:45:44 +08:00
|
|
|
|
LLMFactoriesService.save(**info)
|
2024-11-12 17:35:13 +08:00
|
|
|
|
except Exception:
|
2024-08-15 09:17:36 +08:00
|
|
|
|
pass
|
|
|
|
|
|
LLMService.filter_delete([LLM.fid == factory_llm_info["name"]])
|
|
|
|
|
|
for llm_info in llm_infos:
|
|
|
|
|
|
llm_info["fid"] = factory_llm_info["name"]
|
|
|
|
|
|
try:
|
|
|
|
|
|
LLMService.save(**llm_info)
|
2024-11-12 17:35:13 +08:00
|
|
|
|
except Exception:
|
2024-08-15 09:17:36 +08:00
|
|
|
|
pass
|
|
|
|
|
|
|
2025-05-07 19:36:16 +08:00
|
|
|
|
LLMFactoriesService.filter_delete([(LLMFactories.name == "Local") | (LLMFactories.name == "novita.ai")])
|
2024-08-15 09:17:36 +08:00
|
|
|
|
LLMService.filter_delete([LLM.fid == "Local"])
|
|
|
|
|
|
LLMService.filter_delete([LLM.llm_name == "qwen-vl-max"])
|
|
|
|
|
|
LLMService.filter_delete([LLM.fid == "Moonshot", LLM.llm_name == "flag-embedding"])
|
|
|
|
|
|
TenantLLMService.filter_delete([TenantLLM.llm_factory == "Moonshot", TenantLLM.llm_name == "flag-embedding"])
|
|
|
|
|
|
LLMFactoriesService.filter_delete([LLMFactoriesService.model.name == "QAnything"])
|
|
|
|
|
|
LLMService.filter_delete([LLMService.model.fid == "QAnything"])
|
|
|
|
|
|
TenantLLMService.filter_update([TenantLLMService.model.llm_factory == "QAnything"], {"llm_factory": "Youdao"})
|
2024-11-14 10:18:25 +08:00
|
|
|
|
TenantLLMService.filter_update([TenantLLMService.model.llm_factory == "cohere"], {"llm_factory": "Cohere"})
|
2024-08-15 09:17:36 +08:00
|
|
|
|
TenantService.filter_update([1 == 1], {
|
2025-01-22 19:43:14 +08:00
|
|
|
|
"parser_ids": "naive:General,qa:Q&A,resume:Resume,manual:Manual,table:Table,paper:Paper,book:Book,laws:Laws,presentation:Presentation,picture:Picture,one:One,audio:Audio,email:Email,tag:Tag"})
|
2024-08-15 09:17:36 +08:00
|
|
|
|
## insert openai two embedding models to the current openai user.
|
2024-10-11 11:29:19 +08:00
|
|
|
|
# print("Start to insert 2 OpenAI embedding models...")
|
2024-08-15 09:17:36 +08:00
|
|
|
|
tenant_ids = set([row["tenant_id"] for row in TenantLLMService.get_openai_models()])
|
|
|
|
|
|
for tid in tenant_ids:
|
|
|
|
|
|
for row in TenantLLMService.query(llm_factory="OpenAI", tenant_id=tid):
|
|
|
|
|
|
row = row.to_dict()
|
|
|
|
|
|
row["model_type"] = LLMType.EMBEDDING.value
|
|
|
|
|
|
row["llm_name"] = "text-embedding-3-small"
|
|
|
|
|
|
row["used_tokens"] = 0
|
|
|
|
|
|
try:
|
|
|
|
|
|
TenantLLMService.save(**row)
|
|
|
|
|
|
row = deepcopy(row)
|
|
|
|
|
|
row["llm_name"] = "text-embedding-3-large"
|
|
|
|
|
|
TenantLLMService.save(**row)
|
2024-11-12 17:35:13 +08:00
|
|
|
|
except Exception:
|
2024-08-15 09:17:36 +08:00
|
|
|
|
pass
|
|
|
|
|
|
break
|
2025-09-19 19:11:50 +08:00
|
|
|
|
doc_count = DocumentService.get_all_kb_doc_count()
|
2024-08-15 09:17:36 +08:00
|
|
|
|
for kb_id in KnowledgebaseService.get_all_ids():
|
2025-09-19 19:11:50 +08:00
|
|
|
|
KnowledgebaseService.update_document_number_in_init(kb_id=kb_id, doc_num=doc_count.get(kb_id, 0))
|
2025-01-09 17:07:21 +08:00
|
|
|
|
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def add_graph_templates():
|
|
|
|
|
|
dir = os.path.join(get_project_base_directory(), "agent", "templates")
|
2025-07-30 19:41:09 +08:00
|
|
|
|
CanvasTemplateService.filter_delete([1 == 1])
|
|
|
|
|
|
if not os.path.exists(dir):
|
|
|
|
|
|
logging.warning("Missing agent templates!")
|
|
|
|
|
|
return
|
|
|
|
|
|
|
2024-08-15 09:17:36 +08:00
|
|
|
|
for fnm in os.listdir(dir):
|
|
|
|
|
|
try:
|
2025-03-10 10:13:11 +08:00
|
|
|
|
cnvs = json.load(open(os.path.join(dir, fnm), "r",encoding="utf-8"))
|
2024-08-15 09:17:36 +08:00
|
|
|
|
try:
|
|
|
|
|
|
CanvasTemplateService.save(**cnvs)
|
2024-12-08 14:21:12 +08:00
|
|
|
|
except Exception:
|
2024-08-15 09:17:36 +08:00
|
|
|
|
CanvasTemplateService.update_by_id(cnvs["id"], cnvs)
|
2026-01-04 14:21:39 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logging.exception(f"Add agent templates error: {e}")
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def init_web_data():
|
|
|
|
|
|
start_time = time.time()
|
|
|
|
|
|
|
2026-01-04 14:21:39 +08:00
|
|
|
|
init_table()
|
|
|
|
|
|
|
2024-08-15 09:17:36 +08:00
|
|
|
|
init_llm_factory()
|
2024-11-15 17:30:56 +08:00
|
|
|
|
# if not UserService.get_all().count():
|
2024-09-25 18:30:27 +08:00
|
|
|
|
# init_superuser()
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
|
|
|
|
|
add_graph_templates()
|
2025-12-25 21:18:13 +08:00
|
|
|
|
init_message_id_sequence()
|
|
|
|
|
|
init_memory_size_cache()
|
2026-01-23 16:56:03 +08:00
|
|
|
|
fix_missing_tokenized_memory()
|
2026-03-05 17:27:17 +08:00
|
|
|
|
fix_empty_tenant_model_id()
|
2024-11-14 17:13:48 +08:00
|
|
|
|
logging.info("init web data success:{}".format(time.time() - start_time))
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
2026-01-04 14:21:39 +08:00
|
|
|
|
def init_table():
|
|
|
|
|
|
# init system_settings
|
|
|
|
|
|
with open(os.path.join(get_project_base_directory(), "conf", "system_settings.json"), "r") as f:
|
|
|
|
|
|
records_from_file = json.load(f)["system_settings"]
|
|
|
|
|
|
|
|
|
|
|
|
record_index = {}
|
|
|
|
|
|
records_from_db = SystemSettingsService.get_all()
|
|
|
|
|
|
for index, record in enumerate(records_from_db):
|
|
|
|
|
|
record_index[record.name] = index
|
|
|
|
|
|
|
|
|
|
|
|
to_save = []
|
|
|
|
|
|
for record in records_from_file:
|
|
|
|
|
|
setting_name = record["name"]
|
|
|
|
|
|
if setting_name not in record_index:
|
|
|
|
|
|
to_save.append(record)
|
|
|
|
|
|
|
|
|
|
|
|
len_to_save = len(to_save)
|
|
|
|
|
|
if len_to_save > 0:
|
|
|
|
|
|
# not initialized
|
|
|
|
|
|
try:
|
|
|
|
|
|
SystemSettingsService.insert_many(to_save, len_to_save)
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logging.exception("System settings init error: {}".format(e))
|
|
|
|
|
|
raise e
|
|
|
|
|
|
|
2024-08-15 09:17:36 +08:00
|
|
|
|
|
2026-03-05 17:27:17 +08:00
|
|
|
|
def fix_empty_tenant_model_id():
|
|
|
|
|
|
# knowledgebase
|
|
|
|
|
|
empty_tenant_embd_id_kbs = KnowledgebaseService.get_null_tenant_embd_id_row()
|
|
|
|
|
|
if empty_tenant_embd_id_kbs:
|
|
|
|
|
|
logging.info(f"Found {len(empty_tenant_embd_id_kbs)} empty tenant_embd_id knowledgebase.")
|
|
|
|
|
|
kb_groups: dict = {}
|
|
|
|
|
|
for obj in empty_tenant_embd_id_kbs:
|
|
|
|
|
|
if kb_groups.get((obj.tenant_id, obj.embd_id)):
|
|
|
|
|
|
kb_groups[(obj.tenant_id, obj.embd_id)].append(obj.id)
|
|
|
|
|
|
else:
|
|
|
|
|
|
kb_groups[(obj.tenant_id, obj.embd_id)] = [obj.id]
|
|
|
|
|
|
update_cnt = 0
|
|
|
|
|
|
for k, v in kb_groups.items():
|
|
|
|
|
|
tenant_llm = TenantLLMService.get_api_key(k[0], k[1])
|
|
|
|
|
|
if tenant_llm:
|
|
|
|
|
|
update_cnt += KnowledgebaseService.filter_update([Knowledgebase.id.in_(v)], {"tenant_embd_id": tenant_llm.id})
|
|
|
|
|
|
logging.info(f"Update {update_cnt} tenant_embd_id in table knowledgebase.")
|
|
|
|
|
|
# dialog
|
|
|
|
|
|
empty_tenant_llm_id_dialog = DialogService.get_null_tenant_llm_id_row()
|
|
|
|
|
|
if empty_tenant_llm_id_dialog:
|
|
|
|
|
|
logging.info(f"Found {len(empty_tenant_llm_id_dialog)} empty tenant_llm_id dialogs.")
|
|
|
|
|
|
dialog_groups: dict = {}
|
|
|
|
|
|
for obj in empty_tenant_llm_id_dialog:
|
|
|
|
|
|
if dialog_groups.get((obj.tenant_id, obj.llm_id)):
|
|
|
|
|
|
dialog_groups[(obj.tenant_id, obj.llm_id)].append(obj.id)
|
|
|
|
|
|
else:
|
|
|
|
|
|
dialog_groups[(obj.tenant_id, obj.llm_id)] = [obj.id]
|
|
|
|
|
|
update_cnt = 0
|
|
|
|
|
|
for k, v in dialog_groups.items():
|
|
|
|
|
|
tenant_llm = TenantLLMService.get_api_key(k[0], k[1])
|
|
|
|
|
|
if tenant_llm:
|
|
|
|
|
|
update_cnt += DialogService.filter_update([Dialog.id.in_(v)], {"tenant_llm_id": tenant_llm.id})
|
|
|
|
|
|
logging.info(f"Update {update_cnt} tenant_llm_id in table dialog.")
|
|
|
|
|
|
|
|
|
|
|
|
empty_tenant_rerank_id_dialog = DialogService.get_null_tenant_rerank_id_row()
|
|
|
|
|
|
if empty_tenant_rerank_id_dialog:
|
|
|
|
|
|
logging.info(f"Found {len(empty_tenant_rerank_id_dialog)} empty tenant_rerank_id dialogs.")
|
|
|
|
|
|
dialog_groups: dict = {}
|
|
|
|
|
|
for obj in empty_tenant_rerank_id_dialog:
|
|
|
|
|
|
if dialog_groups.get((obj.tenant_id, obj.rerank_id)):
|
|
|
|
|
|
dialog_groups[(obj.tenant_id, obj.rerank_id)].append(obj.id)
|
|
|
|
|
|
else:
|
|
|
|
|
|
dialog_groups[(obj.tenant_id, obj.rerank_id)] = [obj.id]
|
|
|
|
|
|
update_cnt = 0
|
|
|
|
|
|
for k, v in dialog_groups.items():
|
|
|
|
|
|
tenant_llm = TenantLLMService.get_api_key(k[0], k[1])
|
|
|
|
|
|
if tenant_llm:
|
|
|
|
|
|
update_cnt += DialogService.filter_update([Dialog.id.in_(v)], {"tenant_rerank_id": tenant_llm.id})
|
|
|
|
|
|
logging.info(f"Update {update_cnt} tenant_rerank_id in table dialog.")
|
|
|
|
|
|
# memory
|
|
|
|
|
|
empty_tenant_embd_id_memories = MemoryService.get_null_tenant_embd_id_row()
|
|
|
|
|
|
if empty_tenant_embd_id_memories:
|
|
|
|
|
|
logging.info(f"Found {len(empty_tenant_embd_id_memories)} empty tenant_embd_id memories.")
|
|
|
|
|
|
memory_groups: dict = {}
|
|
|
|
|
|
for obj in empty_tenant_embd_id_memories:
|
|
|
|
|
|
if memory_groups.get((obj.tenant_id, obj.embd_id)):
|
|
|
|
|
|
memory_groups[(obj.tenant_id, obj.embd_id)].append(obj.id)
|
|
|
|
|
|
else:
|
|
|
|
|
|
memory_groups[(obj.tenant_id, obj.embd_id)] = [obj.id]
|
|
|
|
|
|
update_cnt = 0
|
|
|
|
|
|
for k, v in memory_groups.items():
|
|
|
|
|
|
tenant_llm = TenantLLMService.get_api_key(k[0], k[1])
|
|
|
|
|
|
if tenant_llm:
|
|
|
|
|
|
update_cnt += MemoryService.filter_update([Memory.id.in_(v)], {"tenant_embd_id": tenant_llm.id})
|
|
|
|
|
|
logging.info(f"Update {update_cnt} tenant_embd_id in table memory.")
|
|
|
|
|
|
|
|
|
|
|
|
empty_tenant_llm_id_memories = MemoryService.get_null_tenant_llm_id_row()
|
|
|
|
|
|
if empty_tenant_llm_id_memories:
|
|
|
|
|
|
logging.info(f"Found {len(empty_tenant_llm_id_memories)} empty tenant_llm_id memories.")
|
|
|
|
|
|
memory_groups: dict = {}
|
|
|
|
|
|
for obj in empty_tenant_llm_id_memories:
|
|
|
|
|
|
if memory_groups.get((obj.tenant_id, obj.llm_id)):
|
|
|
|
|
|
memory_groups[(obj.tenant_id, obj.llm_id)].append(obj.id)
|
|
|
|
|
|
else:
|
|
|
|
|
|
memory_groups[(obj.tenant_id, obj.llm_id)] = [obj.id]
|
|
|
|
|
|
update_cnt = 0
|
|
|
|
|
|
for k, v in memory_groups.items():
|
|
|
|
|
|
tenant_llm = TenantLLMService.get_api_key(k[0], k[1])
|
|
|
|
|
|
if tenant_llm:
|
|
|
|
|
|
update_cnt += MemoryService.filter_update([Memory.id.in_(v)], {"tenant_llm_id": tenant_llm.id})
|
|
|
|
|
|
logging.info(f"Update {update_cnt} tenant_llm_id in table memory.")
|
|
|
|
|
|
# tenant
|
|
|
|
|
|
empty_tenant_model_id_tenants = TenantService.get_null_tenant_model_id_rows()
|
|
|
|
|
|
if empty_tenant_model_id_tenants:
|
|
|
|
|
|
logging.info(f"Found {len(empty_tenant_model_id_tenants)} empty tenant_model_id tenants.")
|
|
|
|
|
|
update_cnt = 0
|
|
|
|
|
|
for obj in empty_tenant_model_id_tenants:
|
|
|
|
|
|
tenant_dict = obj.to_dict()
|
|
|
|
|
|
update_dict = {}
|
|
|
|
|
|
for key in ["llm_id", "embd_id", "asr_id", "img2txt_id", "rerank_id", "tts_id"]:
|
|
|
|
|
|
if tenant_dict.get(key) and not tenant_dict.get(f"tenant_{key}"):
|
|
|
|
|
|
tenant_model = TenantLLMService.get_api_key(tenant_dict["id"], tenant_dict[key])
|
|
|
|
|
|
if tenant_model:
|
|
|
|
|
|
update_dict.update({f"tenant_{key}": tenant_model.id})
|
|
|
|
|
|
if update_dict:
|
2026-03-06 11:42:31 +08:00
|
|
|
|
update_cnt += TenantService.update_by_id(tenant_dict["id"], update_dict)
|
2026-03-05 17:27:17 +08:00
|
|
|
|
logging.info(f"Update {update_cnt} tenant_model_id in table tenant.")
|
|
|
|
|
|
logging.info("Fix empty tenant_model_id done.")
|
|
|
|
|
|
|
2024-08-15 09:17:36 +08:00
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
init_web_db()
|
|
|
|
|
|
init_web_data()
|