From 874bada42f41a514d60fd702f52a75aa521ed590 Mon Sep 17 00:00:00 2001 From: "langchain-oss-model-profiles[bot]" <262694797+langchain-oss-model-profiles[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 10:08:48 -0400 Subject: [PATCH] chore(model-profiles): refresh model profile data (#38712) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automated refresh of model profile data for all in-monorepo partner integrations via `langchain-profiles refresh`. ๐Ÿค– Generated by the [`refresh_model_profiles` workflow](https://github.com/langchain-ai/langchain/blob/master/.github/workflows/refresh_model_profiles.yml). ## Summary of changes **2 added ยท 2 removed ยท 6 changed** across 1 provider(s). ### openrouter **โž• 2 added** - `aion-labs/aion-3.0` โ€” 131,072 ctx, 32,768 out, reasoning, tools - `aion-labs/aion-3.0-mini` โ€” 131,072 ctx, 32,768 out, reasoning, tools **โž– 2 removed** - `aion-labs/aion-1.0` - `aion-labs/aion-1.0-mini` **โœ๏ธ 6 changed** - `aion-labs/aion-2.0`: added tool calling - `anthropic/claude-opus-4.8`: added temperature control - `nex-agi/nex-n2-pro`: added tool calling - `thedrummer/rocinante-12b`: max input tokens 32,768 โ†’ 65,536; max output tokens 32,768 โ†’ 65,536; added structured output - `z-ai/glm-5.2`: max output tokens 131,072 โ†’ 32,768 - `~anthropic/claude-opus-latest`: added temperature control Co-authored-by: mdrxy <61371264+mdrxy@users.noreply.github.com> --- .../langchain_openrouter/data/_profiles.py | 104 +++++++++--------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/libs/partners/openrouter/langchain_openrouter/data/_profiles.py b/libs/partners/openrouter/langchain_openrouter/data/_profiles.py index dafabb6fd50..b32f6a52a2e 100644 --- a/libs/partners/openrouter/langchain_openrouter/data/_profiles.py +++ b/libs/partners/openrouter/langchain_openrouter/data/_profiles.py @@ -38,50 +38,6 @@ _PROFILES: dict[str, dict[str, Any]] = { "temperature": True, "tool_call_streaming": True, }, - "aion-labs/aion-1.0": { - "name": "Aion-1.0", - "release_date": "2025-02-04", - "last_updated": "2025-02-04", - "open_weights": False, - "max_input_tokens": 131072, - "max_output_tokens": 32768, - "text_inputs": True, - "image_inputs": False, - "audio_inputs": False, - "video_inputs": False, - "text_outputs": True, - "image_outputs": False, - "audio_outputs": False, - "video_outputs": False, - "reasoning_output": True, - "tool_calling": False, - "structured_output": False, - "attachment": False, - "temperature": True, - "tool_call_streaming": True, - }, - "aion-labs/aion-1.0-mini": { - "name": "Aion-1.0-Mini", - "release_date": "2025-02-04", - "last_updated": "2025-02-04", - "open_weights": True, - "max_input_tokens": 131072, - "max_output_tokens": 32768, - "text_inputs": True, - "image_inputs": False, - "audio_inputs": False, - "video_inputs": False, - "text_outputs": True, - "image_outputs": False, - "audio_outputs": False, - "video_outputs": False, - "reasoning_output": True, - "tool_calling": False, - "structured_output": False, - "attachment": False, - "temperature": True, - "tool_call_streaming": True, - }, "aion-labs/aion-2.0": { "name": "Aion-2.0", "release_date": "2026-02-23", @@ -98,7 +54,51 @@ _PROFILES: dict[str, dict[str, Any]] = { "audio_outputs": False, "video_outputs": False, "reasoning_output": True, - "tool_calling": False, + "tool_calling": True, + "structured_output": False, + "attachment": False, + "temperature": True, + "tool_call_streaming": True, + }, + "aion-labs/aion-3.0": { + "name": "Aion-3.0", + "release_date": "2026-07-07", + "last_updated": "2026-07-07", + "open_weights": False, + "max_input_tokens": 131072, + "max_output_tokens": 32768, + "text_inputs": True, + "image_inputs": False, + "audio_inputs": False, + "video_inputs": False, + "text_outputs": True, + "image_outputs": False, + "audio_outputs": False, + "video_outputs": False, + "reasoning_output": True, + "tool_calling": True, + "structured_output": False, + "attachment": False, + "temperature": True, + "tool_call_streaming": True, + }, + "aion-labs/aion-3.0-mini": { + "name": "Aion-3.0-Mini", + "release_date": "2026-07-07", + "last_updated": "2026-07-07", + "open_weights": False, + "max_input_tokens": 131072, + "max_output_tokens": 32768, + "text_inputs": True, + "image_inputs": False, + "audio_inputs": False, + "video_inputs": False, + "text_outputs": True, + "image_outputs": False, + "audio_outputs": False, + "video_outputs": False, + "reasoning_output": True, + "tool_calling": True, "structured_output": False, "attachment": False, "temperature": True, @@ -507,7 +507,7 @@ _PROFILES: dict[str, dict[str, Any]] = { "tool_calling": True, "structured_output": True, "attachment": True, - "temperature": False, + "temperature": True, "tool_call_streaming": True, }, "anthropic/claude-opus-4.8-fast": { @@ -3327,7 +3327,7 @@ _PROFILES: dict[str, dict[str, Any]] = { "audio_outputs": False, "video_outputs": False, "reasoning_output": True, - "tool_calling": False, + "tool_calling": True, "structured_output": False, "attachment": True, "temperature": True, @@ -6922,8 +6922,8 @@ _PROFILES: dict[str, dict[str, Any]] = { "release_date": "2024-09-30", "last_updated": "2024-09-30", "open_weights": True, - "max_input_tokens": 32768, - "max_output_tokens": 32768, + "max_input_tokens": 65536, + "max_output_tokens": 65536, "text_inputs": True, "image_inputs": False, "audio_inputs": False, @@ -6934,7 +6934,7 @@ _PROFILES: dict[str, dict[str, Any]] = { "video_outputs": False, "reasoning_output": False, "tool_calling": False, - "structured_output": False, + "structured_output": True, "attachment": False, "temperature": True, "tool_call_streaming": True, @@ -7410,7 +7410,7 @@ _PROFILES: dict[str, dict[str, Any]] = { "last_updated": "2026-06-13", "open_weights": True, "max_input_tokens": 1048576, - "max_output_tokens": 131072, + "max_output_tokens": 32768, "text_inputs": True, "image_inputs": False, "audio_inputs": False, @@ -7514,7 +7514,7 @@ _PROFILES: dict[str, dict[str, Any]] = { "tool_calling": True, "structured_output": True, "attachment": True, - "temperature": False, + "temperature": True, "tool_call_streaming": True, }, "~anthropic/claude-sonnet-latest": {