Parcourir la source

fix minimax init error (#1537)

### What problem does this PR solve?


### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.9.0
Kevin Hu il y a 1 an
Parent
révision
a5306e6345
Aucun compte lié à l'adresse e-mail de l'auteur
2 fichiers modifiés avec 6 ajouts et 4 suppressions
  1. 1
    0
      api/apps/api_app.py
  2. 5
    4
      api/db/init_data.py

+ 1
- 0
api/apps/api_app.py Voir le fichier

@@ -573,6 +573,7 @@ def completion_faq():
response = MINIO.get(bkt, nm)
data_type_picture["url"] = base64.b64encode(response).decode('utf-8')
data.append(data_type_picture)
break
except Exception as e:
return server_error_response(e)

+ 5
- 4
api/db/init_data.py Voir le fichier

@@ -90,6 +90,11 @@ def init_superuser():
def init_llm_factory():
try:
LLMService.filter_delete([(LLM.fid == "MiniMax" or LLM.fid == "Minimax")])
except Exception as e:
pass
factory_llm_infos = json.load(
open(
os.path.join(get_project_base_directory(), "conf", "llm_factories.json"),
@@ -108,10 +113,6 @@ def init_llm_factory():
LLMService.save(**llm_info)
except Exception as e:
pass
try:
LLMService.filter_delete([(LLM.fid == "MiniMax" or LLM.fid == "Minimax")])
except Exception as e:
pass
LLMFactoriesService.filter_delete([LLMFactories.name == "Local"])
LLMService.filter_delete([LLM.fid == "Local"])

Chargement…
Annuler
Enregistrer