検索結果コンテンツブロックは、適切なソース帰属付きの自然な引用を可能にし、カスタムアプリケーションにウェブ検索品質の引用をもたらします。この機能は、Claudeがソースを正確に引用する必要があるRAG(検索拡張生成)アプリケーションで特に強力です。
検索結果機能は以下のモデルで利用可能です:
claude-opus-4-6)claude-sonnet-4-5-20250929)claude-opus-4-5-20251101)claude-opus-4-1-20250805)claude-opus-4-20250514)claude-sonnet-4-20250514)claude-3-7-sonnet-20250219)claude-haiku-4-5-20251001)claude-3-5-haiku-20241022)検索結果は2つの方法で提供できます:
どちらの場合も、Claudeは適切なソース帰属付きで検索結果からの情報を自動的に引用できます。
検索結果は以下の構造を使用します:
{
"type": "search_result",
"source": "https://example.com/article", // 必須: ソースURLまたは識別子
"title": "Article Title", // 必須: 結果のタイトル
"content": [ // 必須: テキストブロックの配列
{
"type": "text",
"text": "The actual content of the search result..."
}
],
"citations": { // オプション: 引用設定
"enabled": true // この結果の引用を有効/無効にする
}
}| フィールド | 型 | 説明 |
|---|---|---|
type | string | "search_result" でなければなりません |
source | string | コンテンツのソースURLまたは識別子 |
title | string | 検索結果の説明的なタイトル |
content | array | 実際のコンテンツを含むテキストブロックの配列 |
| フィールド | 型 | 説明 |
|---|---|---|
citations | object | enabled ブールフィールドを持つ引用設定 |
cache_control | object | キャッシュ制御設定(例: {"type": "ephemeral"}) |
content 配列の各アイテムは以下を持つテキストブロックでなければなりません:
type: "text" でなければなりませんtext: 実際のテキストコンテンツ(空でない文字列)最も強力なユースケースは、カスタムツールから検索結果を返すことです。これにより、ツールが関連コンテンツを取得して自動引用付きで返す動的RAGアプリケーションが実現します。
from anthropic import Anthropic
from anthropic.types import (
MessageParam,
TextBlockParam,
SearchResultBlockParam,
ToolResultBlockParam
)
client = Anthropic()
# ナレッジベース検索ツールを定義
knowledge_base_tool = {
"name": "search_knowledge_base",
"description": "Search the company knowledge base for information",
"input_schema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query"
}
},
"required": ["query"]
}
}
# ツール呼び出しを処理する関数
def search_knowledge_base(query):
# ここに検索ロジックを記述
# 正しい形式で検索結果を返す
return [
SearchResultBlockParam(
type="search_result",
source="https://docs.company.com/product-guide",
title="Product Configuration Guide",
content=[
TextBlockParam(
type="text",
text="To configure the product, navigate to Settings > Configuration. The default timeout is 30 seconds, but can be adjusted between 10-120 seconds based on your needs."
)
],
citations={"enabled": True}
),
SearchResultBlockParam(
type="search_result",
source="https://docs.company.com/troubleshooting",
title="Troubleshooting Guide",
content=[
TextBlockParam(
type="text",
text="If you encounter timeout errors, first check the configuration settings. Common causes include network latency and incorrect timeout values."
)
],
citations={"enabled": True}
)
]
# ツール付きでメッセージを作成
response = client.messages.create(
model="claude-opus-4-6", # サポートされているすべてのモデルで動作
max_tokens=1024,
tools=[knowledge_base_tool],
messages=[
MessageParam(
role="user",
content="How do I configure the timeout settings?"
)
]
)
# Claudeがツールを呼び出した場合、検索結果を提供
if response.content[0].type == "tool_use":
tool_result = search_knowledge_base(response.content[0].input["query"])
# ツール結果を返送
final_response = client.messages.create(
model="claude-opus-4-6", # サポートされているすべてのモデルで動作
max_tokens=1024,
messages=[
MessageParam(role="user", content="How do I configure the timeout settings?"),
MessageParam(role="assistant", content=response.content),
MessageParam(
role="user",
content=[
ToolResultBlockParam(
type="tool_result",
tool_use_id=response.content[0].id,
content=tool_result # 検索結果をここに配置
)
]
)
]
)ユーザーメッセージに直接検索結果を提供することもできます。これは以下の場合に便利です:
from anthropic import Anthropic
from anthropic.types import (
MessageParam,
TextBlockParam,
SearchResultBlockParam
)
client = Anthropic()
# ユーザーメッセージに直接検索結果を提供
response = client.messages.create(
model="claude-opus-4-6",
max_tokens=1024,
messages=[
MessageParam(
role="user",
content=[
SearchResultBlockParam(
type="search_result",
source="https://docs.company.com/api-reference",
title="API Reference - Authentication",
content=[
TextBlockParam(
type="text",
text="All API requests must include an API key in the Authorization header. Keys can be generated from the dashboard. Rate limits: 1000 requests per hour for standard tier, 10000 for premium."
)
],
citations={"enabled": True}
),
SearchResultBlockParam(
type="search_result",
source="https://docs.company.com/quickstart",
title="Getting Started Guide",
content=[
TextBlockParam(
type="text",
text="To get started: 1) Sign up for an account, 2) Generate an API key from the dashboard, 3) Install our SDK using pip install company-sdk, 4) Initialize the client with your API key."
)
],
citations={"enabled": True}
),
TextBlockParam(
type="text",
text="Based on these search results, how do I authenticate API requests and what are the rate limits?"
)
]
)
]
)
print(response.model_dump_json(indent=2))検索結果がどのように提供されたかに関わらず、Claudeは検索結果からの情報を使用する際に自動的に引用を含めます:
{
"role": "assistant",
"content": [
{
"type": "text",
"text": "To authenticate API requests, you need to include an API key in the Authorization header",
"citations": [
{
"type": "search_result_location",
"source": "https://docs.company.com/api-reference",
"title": "API Reference - Authentication",
"cited_text": "All API requests must include an API key in the Authorization header",
"search_result_index": 0,
"start_block_index": 0,
"end_block_index": 0
}
]
},
{
"type": "text",
"text": ". You can generate API keys from your dashboard",
"citations": [
{
"type": "search_result_location",
"source": "https://docs.company.com/api-reference",
"title": "API Reference - Authentication",
"cited_text": "Keys can be generated from the dashboard",
"search_result_index": 0,
"start_block_index": 0,
"end_block_index": 0
}
]
},
{
"type": "text",
"text": ". The rate limits are 1,000 requests per hour for the standard tier and 10,000 requests per hour for the premium tier.",
"citations": [
{
"type": "search_result_location",
"source": "https://docs.company.com/api-reference",
"title": "API Reference - Authentication",
"cited_text": "Rate limits: 1000 requests per hour for standard tier, 10000 for premium",
"search_result_index": 0,
"start_block_index": 0,
"end_block_index": 0
}
]
}
]
}各引用には以下が含まれます:
| フィールド | 型 | 説明 |
|---|---|---|
type | string | 検索結果の引用では常に "search_result_location" |
source | string | 元の検索結果からのソース |
title | string or null | 元の検索結果からのタイトル |
cited_text | string | 引用されている正確なテキスト |
search_result_index | integer | 検索結果のインデックス(0始まり) |
start_block_index | integer | コンテンツ配列内の開始位置 |
end_block_index | integer | コンテンツ配列内の終了位置 |
注意: search_result_index は、検索結果がどのように提供されたか(ツール呼び出しまたはトップレベルコンテンツ)に関わらず、検索結果コンテンツブロックのインデックス(0始まり)を参照します。
検索結果は content 配列に複数のテキストブロックを含めることができます:
{
"type": "search_result",
"source": "https://docs.company.com/api-guide",
"title": "API Documentation",
"content": [
{
"type": "text",
"text": "Authentication: All API requests require an API key."
},
{
"type": "text",
"text": "Rate Limits: The API allows 1000 requests per hour per key."
},
{
"type": "text",
"text": "Error Handling: The API returns standard HTTP status codes."
}
]
}Claudeは start_block_index と end_block_index フィールドを使用して特定のブロックを引用できます。
同じ会話でツールベースとトップレベルの検索結果の両方を使用できます:
# トップレベルの検索結果を含む最初のメッセージ
messages = [
MessageParam(
role="user",
content=[
SearchResultBlockParam(
type="search_result",
source="https://docs.company.com/overview",
title="Product Overview",
content=[
TextBlockParam(type="text", text="Our product helps teams collaborate...")
],
citations={"enabled": True}
),
TextBlockParam(
type="text",
text="Tell me about this product and search for pricing information"
)
]
)
]
# Claudeが応答し、価格情報を検索するツールを呼び出す可能性があります
# その後、さらに検索結果を含むツール結果を提供します両方の方法で検索結果を他のコンテンツと混在させることができます:
# ツール結果内
tool_result = [
SearchResultBlockParam(
type="search_result",
source="https://docs.company.com/guide",
title="User Guide",
content=[TextBlockParam(type="text", text="Configuration details...")],
citations={"enabled": True}
),
TextBlockParam(
type="text",
text="Additional context: This applies to version 2.0 and later."
)
]
# トップレベルコンテンツ内
user_content = [
SearchResultBlockParam(
type="search_result",
source="https://research.com/paper",
title="Research Paper",
content=[TextBlockParam(type="text", text="Key findings...")],
citations={"enabled": True}
),
{
"type": "image",
"source": {"type": "url", "url": "https://example.com/chart.png"}
},
TextBlockParam(
type="text",
text="How does the chart relate to the research findings?"
)
]パフォーマンス向上のためにキャッシュ制御を追加します:
{
"type": "search_result",
"source": "https://docs.company.com/guide",
"title": "User Guide",
"content": [{"type": "text", "text": "..."}],
"cache_control": {
"type": "ephemeral"
}
}デフォルトでは、検索結果の引用は無効になっています。citations 設定を明示的に設定することで引用を有効にできます:
{
"type": "search_result",
"source": "https://docs.company.com/guide",
"title": "User Guide",
"content": [{"type": "text", "text": "Important documentation..."}],
"citations": {
"enabled": true // この結果の引用を有効にする
}
}citations.enabled が true に設定されている場合、Claudeは検索結果からの情報を使用する際に引用参照を含めます。これにより以下が可能になります:
citations フィールドが省略された場合、引用はデフォルトで無効になります。
引用はオール・オア・ナッシングです:リクエスト内のすべての検索結果で引用が有効であるか、すべてで無効であるかのいずれかでなければなりません。異なる引用設定の検索結果を混在させるとエラーになります。一部のソースの引用を無効にする必要がある場合は、そのリクエスト内のすべての検索結果で無効にする必要があります。
結果を効果的に構造化する
一貫性を維持する
エラーを適切に処理する
def search_with_fallback(query):
try:
results = perform_search(query)
if not results:
return {"type": "text", "text": "No results found."}
return format_as_search_results(results)
except Exception as e:
return {"type": "text", "text": f"Search error: {str(e)}"}content 配列には少なくとも1つのテキストブロックが含まれている必要がありますWas this page helpful?