---
title: "Meta Prompting — メタプロンプティング"
source: "https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0"
wiki: "systems-analysis.info/int"
article: "Meta_Prompting_—_メタプロンプティング"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:Machine learning"
  - "Category:Prompt engineering"
revision_id: 4267
wiki_created_at: 2026-09-06T23:32:53Z
wiki_modified_at: 2026-09-06T23:32:53Z
downloaded_at: 2026-09-07T23:01:44Z
---

# Meta Prompting — メタプロンプティング

**メタプロンプティング**（Meta-prompting）は、プロンプトエンジニアリングの高度な手法であり、大規模言語モデル（LLM）が自身の指示（プロンプト）を作成、修正、最適化するために使用されます<sup>[\[1\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-cookbook_openai-1)</sup>。人間が手動で詳細な指示を作成する従来のアプローチとは異なり、メタプロンプティングは、モデルが果たすべき役割と**タスク解決の構造**を定義することに焦点を当てています。言い換えれば、個々の具体的なケースで*何*をすべきかではなく、タスクを*どのように*解決するかを記述します<sup>[\[2\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-intuition_labs-2)</sup>。

このアプローチにより、LLMは複雑な問題を自律的に分解し、クエリを洗練させ、反復的に回答を改善することが可能になり、より自律的で適応性の高い人工知能システムの構築への道が開かれます。

## 主な手法とアプローチ

「メタプロンプティング」という用語は、2023年末から2024年初頭にかけて学術文献で広まり、複数の研究グループがLLMの制御に関する同様のアプローチを発表しました。

### Scaffolding（スキャフォールディング）メソッド

主要なアプローチの一つは、スタンフォード大学とOpenAIの研究者によって提案されました<sup>[\[3\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-suzgun2024-3)</sup>。**Scaffolding**（足場作り）と名付けられたこの手法では、同じ言語モデル（実験ではGPT-4）が同時に複数の役割を果たします：

- **コンダクター (Conductor)**: 高レベルのメタプロンプトを受け取り、複雑なタスクをより単純なサブタスクに分解します。
- **エキスパート (Experts)**: 「コンダクター」は、複数の自己インスタンスである「エキスパート」を初期化し、それぞれが特別に与えられた指示に従って個別のサブタスクを解決します。
- **統合 (Integration)**: 「コンダクター」は「エキスパート」の作業を調整し、それらの回答を最終的な解決策に統合します。

このようなオーケストレーションアプローチにより、複雑なタスクの解決効率が大幅に向上しました。例えば、実験では、メタプロンプティングは通常のワンステップクエリを**17.1%**上回り、多段階の推論を必要とするタスクセット（例：「24」ゲーム、チェスパズル）において他の高度な手法を15〜17%上回りました<sup>[\[3\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-suzgun2024-3)</sup>。重要なのは、この手法がタスクに依存せず、*ゼロショット*（zero-shot）モードで機能するため、新しいタスクごとに具体的な例を必要としない点です。

### 理論的アプローチと構造的テンプレート

並行して、清華大学の研究グループは、タスクの内容からデータの表現における**構文と形式**へと焦点を移した、独自のメタプロンプティングの概念を提案しました<sup>[\[4\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-zhang2024-4)</sup>。カテゴリカルモデルに基づき、彼らは問題の構造を抽象的に記述することで、モデルが人間の推論に近い深さで思考を構築し、複雑な問題をより単純なステップに効果的に分解できることを示しました。

### 関連概念

メタプロンプティングの考え方は、他の手法にも見られます：

- **Automatic Prompt Engineer (APE)**: LLMが生成された結果の品質に基づいて、自身のための効果的な指示を自動的に生成・選択する手法<sup>[\[5\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-ape2022-5)</sup>。
- **Self-Refine**: モデルが以前のバージョンを批判的に分析し、そのフィードバックに基づいて修正を生成することで、反復的に回答を改善するアプローチ<sup>[\[6\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-self_refine2023-6)</sup>。

## 適用と利点

メタプロンプティングは、数学的証明、プログラミング、ステップバイステップのパズル解決など、複雑な多段階の推論を必要とするタスクで高い有効性を示しています。この手法の主な利点は以下の通りです：

- **トークン効率**: 多くの例を列挙する代わりに、タスクの一般的な構造に焦点を当てることで、プロンプトの量を削減します。メタプロンプトは、より少ないトークンで済む汎用的なテンプレートとなります<sup>[\[7\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-prompting_guide-7)</sup>。
- **安定性と公平性**: この手法は特定の例への依存を避けるため、モデルが訓練サンプルの特定のケースに偏る可能性が低くなります<sup>[\[7\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-prompting_guide-7)</sup>。
- **動的な適応**: 静的なプロンプトとは異なり、メタプロンプティングは反復的な改善を許容します。モデルは解決の過程で指示を уточしたり、不足している情報を要求したり、戦略を修正したりできます<sup>[\[2\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-intuition_labs-2)</sup>。
- **新しいタスクへの汎化**: 高レベルの指示は、これまで見たことのない新しいタスクにも容易に適用できるため、メタプロンプティングは*ゼロショット*アプローチの改良版と言えます。

## 制約とリスク

- **コストと計算の複雑さ**: この手法は、1つのタスクに対してモデルを複数回呼び出す必要があるため、時間とAPIリクエストのコストが増加します。現在の実装は逐次的に動作するため、並列化が困難です<sup>[\[8\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-decoder_article-8)</sup>。
- **モデルの能力への依存**: メタプロンプティングの有効性は、ベースとなるLLMの品質に大きく依存します。研究によれば、GPT-3.5ではこの手法による恩恵はほとんどありませんが、GPT-4以降のモデルではその効果が著しく向上します<sup>[\[8\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-decoder_article-8)</sup>。
- **LLMの根本的な制約**: メタプロンプティングは万能薬ではありません。タスクがベースモデルの知識範囲を超えている場合、完璧に定式化されたメタプロンプトでも正しい結果を保証することはできません。このような場合、ファインチューニングや、外部ツール（例：ウェブ検索、コードインタプリタ）との統合が必要です<sup>[\[3\]](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_note-suzgun2024-3)</sup>。

## 外部リンク

- <a href="https://cookbook.openai.com/examples/enhance_your_prompts_with_meta_prompting" class="external text" rel="nofollow">OpenAI Cookbookにおけるメタプロンプティングの例</a>
- <a href="https://www.promptingguide.ai/techniques/meta-prompting" class="external text" rel="nofollow">Prompt Engineering Guideにおける手法の解説</a>

## 参考文献

- Suzgun, M.; Kalai, A. T. (2024). *Meta-Prompting: Enhancing Language Models with Task-Agnostic Scaffolding*. <a href="https://arxiv.org/abs/2401.12954" class="external text" rel="nofollow">arXiv:2401.12954</a>.
- Zhang, Y.; Yuan, Y.; Yao, A. C.-C. (2023). *Meta Prompting for AGI Systems*. <a href="https://arxiv.org/abs/2311.11482" class="external text" rel="nofollow">arXiv:2311.11482</a>.
- Zhou, Y. et al. (2022). *Large Language Models Are Human-Level Prompt Engineers*. <a href="https://arxiv.org/abs/2211.01910" class="external text" rel="nofollow">arXiv:2211.01910</a>.
- Madaan, A. et al. (2023). *Self-Refine: Iterative Refinement with Self-Feedback*. <a href="https://arxiv.org/abs/2303.17651" class="external text" rel="nofollow">arXiv:2303.17651</a>.
- Ning, X. et al. (2023). *Skeleton-of-Thought: Prompting LLMs for Efficient Parallel Generation*. <a href="https://arxiv.org/abs/2307.15337" class="external text" rel="nofollow">arXiv:2307.15337</a>.
- Chen, X. et al. (2023). *Universal Self-Consistency for Large Language Model Generation*. <a href="https://arxiv.org/abs/2311.17311" class="external text" rel="nofollow">arXiv:2311.17311</a>.
- Wang, X. et al. (2022). *Self-Consistency Improves Chain-of-Thought Reasoning in Language Models*. <a href="https://arxiv.org/abs/2203.11171" class="external text" rel="nofollow">arXiv:2203.11171</a>.
- Fernando, C. et al. (2023). *PromptBreeder: Self-Referential Self-Improvement via Prompt Evolution*. <a href="https://arxiv.org/abs/2309.16797" class="external text" rel="nofollow">arXiv:2309.16797</a>.
- Zhou, P. et al. (2024). *Self-DISCOVER: Large Language Models Self-Compose Reasoning Structures*. <a href="https://arxiv.org/abs/2402.03620" class="external text" rel="nofollow">arXiv:2402.03620</a>.
- Chen, J. et al. (2024). *Thought-Augmented Reasoning with Large Language Models*. <a href="https://arxiv.org/abs/2406.04271" class="external text" rel="nofollow">arXiv:2406.04271</a>.

## 脚注

1.  <span id="cite_note-cookbook_openai-1">[↑](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-cookbook_openai_1-0) “Enhance your prompts with meta prompting”. *OpenAI Cookbook*. <a href="https://cookbook.openai.com/examples/enhance_your_prompts_with_meta_prompting" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-intuition_labs-2">↑ <sup>[2.0](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-intuition_labs_2-0)</sup> <sup>[2.1](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-intuition_labs_2-1)</sup> “Meta-Prompting: LLMs Crafting & Enhancing Their Own Prompts”. *Intuition Labs*. <a href="https://intuitionlabs.ai/articles/meta-prompting-llm-self-optimization" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-suzgun2024-3">↑ <sup>[3.0](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-suzgun2024_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-suzgun2024_3-1)</sup> <sup>[3.2](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-suzgun2024_3-2)</sup> Suzgun, Mirac; Kalai, Adam T. (2024). “Meta-Prompting: Enhancing Language Models with Task-Agnostic Scaffolding”. *arXiv:2401.12954*.</span>
4.  <span id="cite_note-zhang2024-4">[↑](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-zhang2024_4-0) Zhang, Yifan, et al. (2023). “Meta Prompting for AGI Systems”. *arXiv:2311.11482*.</span>
5.  <span id="cite_note-ape2022-5">[↑](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-ape2022_5-0) Zhou, Y., et al. (2022). “Large Language Models Are Human-Level Prompt Engineers”. *arXiv:2211.01910*.</span>
6.  <span id="cite_note-self_refine2023-6">[↑](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-self_refine2023_6-0) Madaan, A., et al. (2023). “Self-Refine: Iterative Refinement with Self-Feedback”. *arXiv:2303.17651*.</span>
7.  <span id="cite_note-prompting_guide-7">↑ <sup>[7.0](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-prompting_guide_7-0)</sup> <sup>[7.1](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-prompting_guide_7-1)</sup> “Meta Prompting”. *Prompt Engineering Guide*. <a href="https://www.promptingguide.ai/techniques/meta-prompting" class="external autonumber" rel="nofollow">[3]</a></span>
8.  <span id="cite_note-decoder_article-8">↑ <sup>[8.0](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-decoder_article_8-0)</sup> <sup>[8.1](https://systems-analysis.info/int/Meta_Prompting_%E2%80%94_%E3%83%A1%E3%82%BF%E3%83%97%E3%83%AD%E3%83%B3%E3%83%97%E3%83%86%E3%82%A3%E3%83%B3%E3%82%B0#cite_ref-decoder_article_8-1)</sup> “AI within an AI: Meta-prompting can improve the reasoning capabilities of large language models”. *The Decoder*.</span>
