Upgrade to Pro — share decks privately, control downloads, hide ads and more …

AI開発の精度を決める「4つの入力」

Sponsored · Your Podcast. Everywhere. Effortlessly. Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
Avatar for k2moons k2moons
February 27, 2026

 AI開発の精度を決める「4つの入力」

プロジェクト固有のドキュメント
論理的判断
ドメイン知識
既存の成果物

実践知のAI間共有

Avatar for k2moons

k2moons

February 27, 2026
Tweet

More Decks by k2moons

Other Decks in Technology

Transcript

  1. 自己紹介 名前:k2moons / BlueEventHorizon 仕事:iOSアプリエンジニア X : k2_moons Github :

    BlueEventHorizon 好きなエディタ: Xcode 好きな生成AI: Claude Code 2
  2. 入力の性質 入力 出所 AIへの届け方 1. プロジェクト 固有文書 人間が用意する(固定) 適切に参照させる必要がある 2.

    論理的判断 AIが元来持っている 常に利用可能 3. ドメイン知識 AIが元来持っている 手放しで信頼できないが、常 に利用可能 4. 既存の成果物 プロジェクトに蓄積される (増える) 適切に参照させる必要がある 9
  3. RAG(Retrieval-Augmented Generation) 1. チャンキング(分割) ドキュメントを一定サイズの断片に分割 2. 埋め込み(Embedding) 各チャンクを埋め込みモデル(OpenAI Embeddingsなど)でベク トルに変換します

    3. 検索・取得(Retrieval) クエリも同様にベクトル化し、ベクトルDB内の全チャンクと類似度 を計算。最も近いチャンクだけをAIに渡します。 14
  4. 参考 DocAdvisor - GitHub Swift-Selena - GitHub claude-mem - GitHub

    A2A Protocol - 公式サイト A2A Protocol - GitHub OpenAI Agents SDK / Handoffs Anthropic Claude Code / Subagents Anthropic Applied AI Team (2025). "Effective context engineering for AI agents" Liu, N. F., et al. (2023). "Lost in the Middle: How Language Models Use Long Contexts" 30