mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-04 01:48:27 +02:00
add handling for poorly formatting model names (#2143)
This commit is contained in:
parent
33fed955d9
commit
3ffbe659e3
@ -338,9 +338,11 @@ def get_llm_max_tokens(
|
||||
return GEN_AI_MAX_TOKENS
|
||||
|
||||
try:
|
||||
model_obj = model_map.get(f"{model_provider}/{model_name}")
|
||||
if not model_obj:
|
||||
model_obj = model_map[model_name]
|
||||
model_obj = (
|
||||
model_map.get(f"{model_provider}/{model_name}")
|
||||
or model_map.get(model_name)
|
||||
or model_map[model_name.split("/")[1]]
|
||||
)
|
||||
|
||||
if "max_input_tokens" in model_obj:
|
||||
return model_obj["max_input_tokens"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user