Skip to content

Commit b06bd6a

Browse files
authored
fix(model-profiles): add typing-extensions as explicit dep (#33762)
1 parent 1c76218 commit b06bd6a

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

β€Žlibs/model-profiles/langchain_model_profiles/data/models.jsonβ€Ž

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2782,6 +2782,35 @@
27822782
"release_date": "2025-07-23",
27832783
"temperature": true,
27842784
"tool_call": true
2785+
},
2786+
"zai-glm-4.6": {
2787+
"attachment": false,
2788+
"cost": {
2789+
"cache_read": 0,
2790+
"cache_write": 0,
2791+
"input": 0,
2792+
"output": 0
2793+
},
2794+
"id": "zai-glm-4.6",
2795+
"last_updated": "2025-11-05",
2796+
"limit": {
2797+
"context": 131072,
2798+
"output": 40960
2799+
},
2800+
"modalities": {
2801+
"input": [
2802+
"text"
2803+
],
2804+
"output": [
2805+
"text"
2806+
]
2807+
},
2808+
"name": "Z.AI GLM-4.6",
2809+
"open_weights": true,
2810+
"reasoning": false,
2811+
"release_date": "2025-11-05",
2812+
"temperature": true,
2813+
"tool_call": true
27852814
}
27862815
},
27872816
"name": "Cerebras",
@@ -6710,7 +6739,7 @@
67106739
"tool_call": true
67116740
}
67126741
},
6713-
"name": "Vertex",
6742+
"name": "Vertex (Anthropic)",
67146743
"npm": "@ai-sdk/google-vertex"
67156744
},
67166745
"groq": {

β€Žlibs/model-profiles/pyproject.tomlβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ license = { text = "MIT" }
88
requires-python = ">=3.10.0,<4.0.0"
99
dependencies = [
1010
"tomli>=2.0.0,<3.0.0; python_version < '3.11'",
11+
"typing-extensions>=4.7.0,<5.0.0",
1112
]
1213

1314
name = "langchain-model-profiles"

β€Žlibs/model-profiles/scripts/refresh_data.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
def main() -> None:
4343
"""Download and save the latest model data from models.dev."""
4444
api_url = "https://models.dev/api.json"
45-
output_dir = Path(__file__).parent.parent / "langchain" / "model_profiles" / "data"
45+
output_dir = Path(__file__).parent.parent / "langchain_model_profiles" / "data"
4646
output_file = output_dir / "models.json"
4747

4848
print(f"Downloading data from {api_url}...") # noqa: T201

β€Žlibs/model-profiles/uv.lockβ€Ž

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)