updated provider_models.json to yaml, added that file to our docs for reference

This commit is contained in:
Salman Paracha 2026-01-27 15:38:14 -08:00
parent 5984e2c594
commit 1d5c8e05ac
13 changed files with 406 additions and 360 deletions

View file

@ -210,7 +210,7 @@ def validate_and_render_schema():
model_name_tokens = model_name.split("/")
if len(model_name_tokens) < 2:
raise Exception(
f"Invalid model name {model_name}. Please provide model name in the format <provider>/<model_id>."
f"Invalid model name {model_name}. Please provide model name in the format <provider>/<model_id> or <provider>/* for wildcards."
)
provider = model_name_tokens[0].strip()