소스 검색

Fix: Hunyuan model adding error. (#6531)

### What problem does this PR solve?

#6523
### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.18.0
Kevin Hu 7 달 전
부모
커밋
163e71d06f
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      api/apps/llm_app.py

+ 1
- 1
api/apps/llm_app.py 파일 보기

@@ -139,7 +139,7 @@ def add_llm():
req = request.json
factory = req["llm_factory"]
api_key = req.get("api_key", "x")
llm_name = req["llm_name"]
llm_name = req.get("llm_name")

def apikey_json(keys):
nonlocal req

Loading…
취소
저장