feat(model-profiles): new fields + Makefile target (#35788)

Extract additional fields from models.dev into `_model_data_to_profile`:
`name`, `status`, `release_date`, `last_updated`, `open_weights`,
`attachment`, `temperature`

Move the model profile refresh logic from an inline bash script in the
GitHub Actions workflow into a `make refresh-profiles` target in
`libs/model-profiles/Makefile`. This makes it runnable locally with a
single command and keeps the provider map in one place instead of
duplicated between CI and developer docs.
This commit is contained in:
Mason Daugherty
2026-03-12 09:56:25 -04:00
committed by GitHub
parent 1891d414be
commit 5d9568b5f5
15 changed files with 2373 additions and 34 deletions

View File

@@ -17,6 +17,10 @@ from typing import Any
_PROFILES: dict[str, dict[str, Any]] = {
"deepseek-chat": {
"name": "DeepSeek Chat",
"release_date": "2025-12-01",
"last_updated": "2026-02-28",
"open_weights": True,
"max_input_tokens": 128000,
"max_output_tokens": 8192,
"text_inputs": True,
@@ -29,8 +33,14 @@ _PROFILES: dict[str, dict[str, Any]] = {
"video_outputs": False,
"reasoning_output": False,
"tool_calling": True,
"attachment": True,
"temperature": True,
},
"deepseek-reasoner": {
"name": "DeepSeek Reasoner",
"release_date": "2025-12-01",
"last_updated": "2026-02-28",
"open_weights": True,
"max_input_tokens": 128000,
"max_output_tokens": 64000,
"text_inputs": True,
@@ -43,5 +53,7 @@ _PROFILES: dict[str, dict[str, Any]] = {
"video_outputs": False,
"reasoning_output": True,
"tool_calling": True,
"attachment": True,
"temperature": True,
},
}