add handling for poorly formatting model names (#2143)

This commit is contained in:
pablodanswer 2024-08-15 15:01:57 -07:00 committed by GitHub
parent 33fed955d9
commit 3ffbe659e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"]