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

もりもり新機能を一挙紹介! AgentCoreに入門して、AWS上にAIエージェントを構築しよう

もりもり新機能を一挙紹介! AgentCoreに入門して、AWS上にAIエージェントを構築しよう

製造業でも生成AI活用したい!名古屋LLM Meetup #12
https://kinto-technologies.connpass.com/event/388207/

Avatar for みのるん

みのるん PRO

June 05, 2026

More Decks by みのるん

Other Decks in Technology

Transcript

  1. モダンなハーネスSDKを使ってみよう! 令和のエージェントは3行のコードで書ける from strands import Agent agent = Agent() agent("AIエージェントって何?")

    他にもLangChain、Mastra、ADK…好きなの使えばOK。 最近のフレームワークの共通点は シンプルなコードで書ける こと! 16
  2. 好きなモデルをエージェントの頭脳にしよう GPT-5.5 on Bedrockにも対応! from aws_bedrock_token_generator import provide_token from strands

    import Agent from strands.models.openai_responses import OpenAIResponsesModel model = OpenAIResponsesModel( model_id="openai.gpt-5.5", client_args={ "base_url": "https://bedrock-mantle.us-east-2.api.aws/openai/v1", "api_key": provide_token(region="us-east-2"), }, ) agent = Agent(model=model) 17
  3. あとは欲しいツールを足せばOK 関数を書いて、@tool でデコるだけ! 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("さんたすななは?") 18