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

2026年のAIエージェント構築はどうなる?

 2026年のAIエージェント構築はどうなる?

Avatar for みのるん

みのるん

February 20, 2026
Tweet

More Decks by みのるん

Other Decks in Technology

Transcript

  1. 令和のAIエージェントは3行で書ける Strands Agentsの例 from strands import Agent agent = Agent()

    agent("Strandsってどういう意味?") たったこれだけ書いて実行すれば、 AIエージェントが動く! 18
  2. あとはモデルとツールをアレンジするだけ! Strandsは「モデル駆動」だからシンプルに書ける from strands import Agent, tool @tool def add(x,

    y): return x+y agent = Agent( model="jp.anthropic.claude-sonnet-4-6", tools=[add] ) agent("さんたすななは?") 19