LlmAgent.builder() .name("search_assistant") .description("An assistant that can search the web.") .model("gemini-2.0-flash") // Or your preferred models .instruction("You are a helpful assistant. Answer user questions using Google Search when needed.") .tools(new GoogleSearchTool()) .build(); • LlmAgent が一つの AI Agent となる • Instruction、Description で Agent を設定する • subAgents, Tools を入れることで機能拡張する