エージェントの能動的な文脈管理を教える「ContextPilot-14B」が公開
本文の状態
日本語全文を表示中
詳細モードで約3分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
TLDR AI
テンセントは長期的な言語モデルエージェント向けの能動的な文脈管理フレームワーク「ContextPilot」を発表し、そのベースとなる14Bパラメータのチェックポイントを公開した。
AI深層分析を開く2026年9月1日 04:07
AI深層分析
キーポイント
能動的な文脈管理フレームワーク
ContextPilotはエージェントが推論やツール使用中に計画を立て、長期的なメモリを維持し、不要な文脈をオフロードする能力を教えるためのフレームワークである。
3 つの主要コンポーネント
拡張された文脈管理ツールセット(計画・構造化メモリ・検索・ソフトオフロード)、文脈認識型部分ロールアウト、および中間スナップショットを訓練する微細なクレジット割り当てから構成される。
Qwen3-14B ベースのモデル公開
テンセントは「ContextPilot-14B」として Qwen3-14B のチェックポイントを Hugging Face および GitHub で公開し、長文コンテキスト質問応答や深層検索タスクでの評価を可能にした。
実装とロード方法
提供されたコードスニペットにより、Transformers ライブラリを使用してモデルとトークナイザーを簡単に読み込み、実行環境に組み込むことができる。
ロード時の注意点
チェックポイントの読み込みだけではコンテキスト管理ツールは実行されず、ツール定義やエージェントランタイムは公式リポジトリで提供される。
重要な引用
ContextPilot is a proactive context-management framework for long-horizon language-model agents.
It teaches agents to plan, maintain long-term memory, and offload less useful context while they continue reasoning and using tools.
Note that loading the checkpoint alone does not execute context-management tools; the tool definitions, agent runtime, and evaluation pipeline are provided in the ContextPilot repository.
This checkpoint is intended for research on proactive context management, long-horizon agents, long-context QA, and deep search.
編集コメントを表示
編集コメント
テンセントが公開したこのフレームワークは、長文コンテキストを扱うエージェントのボトルネックである「情報の洪水」に対する実用的なアプローチを示している。Qwen3-14B をベースに RL で微細化された点は、既存の基盤モデルの性能を最大限引き出すための重要な技術的進歩と言える。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
ContextPilot: 細粒度強化学習によるエージェントの能動的な文脈管理
ContextPilot-14B は、長期にわたる言語モデルエージェント向けの能動的な文脈管理フレームワーク「ContextPilot」の Qwen3-14B チェックポイントです。このモデルは、推論やツール利用を継続しながら、計画立案、長期的な記憶の維持、不要な文脈のオフロードといった能力を学習させます。
詳細については、論文 または コードリポジトリ をご覧ください。
概要
ContextPilot は、主に以下の 3 つのコンポーネントで構成されています。
- 計画立案、構造化されたメモリ管理、検索機能、そしてソフトな文脈オフロードを備えた拡張された文脈管理ツールセット
- 文脈を認識した部分的ロールアウト。これは、文脈編集の決定において特に重要な部分に探索を集中させる手法です
- 細粒度のクレジットアサインメント。下流のブランチの結果を用いて、中間スナップショットを学習させます
これにより構築されたエージェントは、長文コンテキストでの質問応答や深層検索タスクで評価されています。詳細な評価手順については、評価ガイド をご確認ください。
読み込み
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "tencent/ContextPilot-14B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="auto",
device_map="auto",
)
なお、チェックポイントの読み込みだけでは文脈管理ツールは実行されません。ツールの定義、エージェントの実行環境、評価パイプラインについては、ContextPilot リポジトリ で提供されています。
完全なセットアップ手順については、推論ガイド をご覧ください。
想定される用途
このチェックポイントは、能動的なコンテキスト管理、長期ホライゾンのエージェント、長文コンテキストの QA、および深層検索に関する研究を目的としています。
ライセンス
引用
@inproceedings{pan-etal-2026-contextpilot,
title = "ContextPilot: Teaching Agents for Proactive Context Management via Fine-grained RL",
author = "Pan, Zhuoshi and
Pei, Qizhi and
Lu, Junru and
Lin, Honglin and
Zhao, H. Vicky and
Yin, Di and
Sun, Xing",
booktitle = "Proceedings of the 2026 Conference on Empirical Methods in Natural Language Processing",
month = nov,
year = "2026",
address = "Budapest, Hungary",
publisher = "Association for Computational Linguistics",
abstract = "Long-horizon agentic tasks require large language models (LLMs) to iteratively retrieve, integrate, and maintain dispersed information across multi-turn interactions, but preserving all interaction histories leads to a continuously growing working context. Recent proactive context management methods allow models to edit their own working context with specialized tools, yet they still face three key limitations: (1) a limited toolset restricted to search, deletion, and summarization, with no support for global planning, long-term memory, and adaptive compression; (2) inefficient exploration that treats context management actions uniformly despite their heterogeneous impacts on final outcomes; and (3) coarse-grained credit assignment that assigns the final trajectory-level reward to all intermediate context editing actions during RL. To bridge these gaps, we introduce ContextPilot, a proactive context management framework for long-horizon agentic reasoning. Our approach systematically augments the toolset with planning, long-term memory, and soft context offloading tools. We further propose an RL method tailored for context management, which uses context and entropy variation to identify critical editing decisions for branch sampling and estimates action-level advantages from all branched trajectories that pass through the corresponding context editing action. Experiments on long-context QA and deep search tasks show that ContextPilot achieves stronger performance with a more compact working context, consistently outperforming existing baselines across various base models and benchmarks. Code is available at \url{https://github.com/Tencent/ContextPilot}."
}
関連記事
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み