Cline SDK v0.0.75Cline SDK v0.0.75
匿名の公開いいねです。記事の保存・お気に入りではなく、Featured、Top 3、重要度、掲載順位には影響しません。仕組みとプライバシーAnonymous public likes are reactions, not saved articles or bookmarks. They do not affect Featured, Top 3, importance, or listing order.How it works and privacy
- プロバイダー実行によるウェブ検索機能が追加され、対応モデルはターン中にウェブ検索を行い、その結果をセッション履歴に保存・再生できる。
- デフォルトは無効で、設定から有効化可能。
Cline SDK v0.0.75 adds provider-executed web search for supported models, persisting search calls and results in session history for replay on reload; the feature is opt-in via the web_search model tool in settings.
要約と収集メタデータをもとに生成した AI 解説本文です。元記事全文の転載・翻訳ではありません。This AI explainer is generated from the summaries and collected metadata, not from a reproduction or translation of the full source article.
AIコーディング支援ツールのClineが、開発者向けSDKの最新版「Cline SDK v0.0.75」を公開した。今回の目玉は、プロバイダー側で実行されるウェブ検索(provider-executed web search)への対応で、対応するモデルであれば応答生成の途中でウェブ上の情報を参照できるようになる。
従来、AIエージェントがウェブ検索を行う場合、クライアントやツール側で検索処理を実装し、その結果をモデルに渡す構成が一般的だった。今回追加された方式では、モデルを提供するプロバイダー側が検索を実行するため、モデルが一つのターン(応答)の中で検索を呼び出し、得られた結果を踏まえて回答を組み立てられる。最新情報や外部の一次情報が必要なタスクで、モデルの学習済み知識だけでは補えない部分を補完しやすくなると見られる。
注目すべきは、検索の呼び出しとその結果がセッション履歴(session history)に保存される点だ。これにより、セッションを再読み込みした際にも検索のやり取りがそのまま再生され、後から会話の経緯や回答の根拠を追いやすくなる。エージェントの動作を検証・再現するうえで有用な仕組みといえる。
プロバイダー実行によるウェブ検索機能が追加され、対応モデルはターン中にウェブ検索を行い、その結果をセッション履歴に保存・再生できる。
この機能はデフォルトでは無効化されており、利用するには設定から「web_search」モデルツールを有効にする必要がある。意図しない外部アクセスを避けたいユーザーに配慮した、オプトイン方式の設計と考えられる。
ウェブ検索の統合は、コード生成や調査を担うAIエージェント全般で関心が高まっている領域であり、リアルタイム性のある情報をどう取り込むかは各種ツールで共通の課題となっている。Clineはオープンソースを軸に開発が進むプロジェクトであり、SDKの継続的な更新は、外部アプリケーションへの組み込みや自動化用途での活用を後押しする可能性がある。今回のリリースにはこのほかにも追加要素が含まれるとされるが、詳細は公開されたリリースノートで確認したい。
Cline has released version 0.0.75 of its SDK, adding provider-executed web search that lets supported models pull in live information from the internet during a single conversational turn. For developers building agentic coding workflows on top of Cline, the change matters because it shifts web retrieval from a client-managed step to something the model provider handles directly, while keeping the resulting data reproducible across sessions.
The headline addition is provider-executed web search. When a model that supports the capability is in use, it can issue search queries and receive results as part of its turn, without the host application needing to orchestrate a separate retrieval pipeline. This is distinct from client-side approaches, where the application intercepts a request, calls a search API, and feeds the results back into the prompt. Here, the search is executed by the provider's infrastructure, which typically means the model decides when a query is warranted and integrates the returned content into its reasoning.
A notable detail is how Cline handles state. The search calls and their results are persisted in session history, so they replay when a session is reloaded. This is important for reproducibility and debugging: an agent's behavior often depends on the exact information it retrieved at a given moment, and without persistence, reloading a conversation could produce different results or lose the context that shaped earlier responses. By storing both the calls and their outputs, Cline preserves a faithful record of what the model saw.
The feature is off by default. Users who want it must enable the web_search model tool in settings, making this an opt-in capability rather than a behavior that changes existing workflows automatically. That default is a reasonable choice given that web search introduces external data, potential latency, and, depending on the provider, additional cost per query. Teams that need deterministic or offline-friendly behavior can leave it disabled.
The release notes also indicate the addition of a dedicated Cline provider, though the available excerpt is truncated. Based on the wording, it appears Cline is introducing a first-party provider option alongside its existing support for third-party model backends, though the specifics are not fully described here.
Some background helps frame the update. Cline is an open-source AI coding assistant that operates as an agent, reading and editing files, running commands, and iterating on tasks within a developer's environment. It is model-agnostic, working across providers such as Anthropic, OpenAI, and others, and the SDK exposes this functionality programmatically so it can be embedded into other tools and automated pipelines. An SDK release like this one is aimed less at end users clicking through an editor and more at developers wiring Cline into their own systems.
Provider-executed web search itself reflects a broader industry pattern. Major model vendors have increasingly built server-side tools, including web search, into their APIs, so that the model can call these capabilities natively rather than relying on the application to simulate them. Anthropic and OpenAI, among others, have shipped hosted tool-use features along these lines. Cline's decision to surface provider-executed search, and to persist its artifacts, aligns the SDK with that direction while addressing a practical gap around session continuity.
For practitioners, the immediate takeaways are straightforward. The capability is limited to models that support it, so the benefit depends on the chosen backend. Because results are stored in session history, reloaded conversations should behave consistently, which is useful for audit trails and for reproducing agent runs. And because it is opt-in, existing deployments are unaffected unless the web_search tool is explicitly enabled.
As with any point release in a fast-moving project, the full impact will likely become clearer as more providers expose compatible search tooling and as developers report how persistence behaves in longer-running sessions. For now, v0.0.75 is best read as an incremental but meaningful step toward richer, reproducible agent behavior.
本ページの本文と要約は AI による自動生成です。日本語版と英語版は言語ごとに独立して生成されるため、表現や詳しさが異なる場合があります。正確性は元記事 (github.com) をご確認ください。The body and summaries are AI-generated independently for each language, so wording and detail may differ. Verify accuracy at the original source (github.com).