Update bridge_openrouter.py (#2132)

fix openrouter api 400 post bug

Co-authored-by: lan <56376794+lostatnight@users.noreply.github.com>
This commit is contained in:
barry 2025-02-07 21:28:05 +08:00 committed by GitHub
parent 8a0d96afd3
commit 6dda2061dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ def generate_payload(inputs:str, llm_kwargs:dict, history:list, system_prompt:st
model, _ = read_one_api_model_name(model) model, _ = read_one_api_model_name(model)
if llm_kwargs['llm_model'].startswith('openrouter-'): if llm_kwargs['llm_model'].startswith('openrouter-'):
model = llm_kwargs['llm_model'][len('openrouter-'):] model = llm_kwargs['llm_model'][len('openrouter-'):]
model= read_one_api_model_name(model) model, _= read_one_api_model_name(model)
if model == "gpt-3.5-random": # 随机选择, 绕过openai访问频率限制 if model == "gpt-3.5-random": # 随机选择, 绕过openai访问频率限制
model = random.choice([ model = random.choice([
"gpt-3.5-turbo", "gpt-3.5-turbo",