@@ -37,7 +37,7 @@ Strands Agents is a simple yet powerful SDK that takes a model-driven approach t
3737## Feature Overview
3838
3939- ** Lightweight & Flexible** : Simple agent loop that just works and is fully customizable
40- - ** Model Agnostic** : Support for Amazon Bedrock, Anthropic, LiteLLM, Llama, Ollama, OpenAI, Writer, and custom providers
40+ - ** Model Agnostic** : Support for Amazon Bedrock, Anthropic, Gemini, LiteLLM, Llama, Ollama, OpenAI, Writer, and custom providers
4141- ** Advanced Capabilities** : Multi-agent systems, autonomous agents, and streaming support
4242- ** Built-in MCP** : Native support for Model Context Protocol (MCP) servers, enabling access to thousands of pre-built tools
4343
@@ -129,6 +129,8 @@ from strands import Agent
129129from strands.models import BedrockModel
130130from strands.models.ollama import OllamaModel
131131from strands.models.llamaapi import LlamaAPIModel
132+ from strands.models.gemini import GeminiModel
133+ from strands.models.llamacpp import LlamaCppModel
132134
133135# Bedrock
134136bedrock_model = BedrockModel(
@@ -139,6 +141,15 @@ bedrock_model = BedrockModel(
139141agent = Agent(model = bedrock_model)
140142agent(" Tell me about Agentic AI" )
141143
144+ # Google Gemini
145+ gemini_model = GeminiModel(
146+ api_key = " your_gemini_api_key" ,
147+ model_id = " gemini-2.5-flash" ,
148+ params = {" temperature" : 0.7 }
149+ )
150+ agent = Agent(model = gemini_model)
151+ agent(" Tell me about Agentic AI" )
152+
142153# Ollama
143154ollama_model = OllamaModel(
144155 host = " http://localhost:11434" ,
@@ -158,6 +169,7 @@ response = agent("Tell me about Agentic AI")
158169Built-in providers:
159170 - [ Amazon Bedrock] ( https://strandsagents.com/latest/user-guide/concepts/model-providers/amazon-bedrock/ )
160171 - [ Anthropic] ( https://strandsagents.com/latest/user-guide/concepts/model-providers/anthropic/ )
172+ - [ Gemini] ( https://strandsagents.com/latest/user-guide/concepts/model-providers/gemini/ )
161173 - [ Cohere] ( https://strandsagents.com/latest/user-guide/concepts/model-providers/cohere/ )
162174 - [ LiteLLM] ( https://strandsagents.com/latest/user-guide/concepts/model-providers/litellm/ )
163175 - [ llama.cpp] ( https://strandsagents.com/latest/user-guide/concepts/model-providers/llamacpp/ )
0 commit comments