Skip to content

Commit db24b49

Browse files
committed
update llm model
1 parent 07dc16b commit db24b49

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

AgentCrew/modules/llm/constants.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -170,22 +170,22 @@
170170

171171
_GOOGLE_MODELS = [
172172
Model(
173-
id="gemini-2.0-flash",
173+
id="gemini-2.5-flash-lite-preview-06-17",
174174
provider="google",
175-
name="Gemini 2.0 Flash",
176-
description="Gemini 2.0 Flash is a powerful language model from Google, designed for both text and visual inputs.",
175+
name="Gemini 2.5 Lite",
176+
description="Gemini 2.0 Flash Lite is low latancy, balanced language model from Google, designed for both text and visual inputs.",
177177
capabilities=["tool_use", "vision"],
178178
input_token_price_1m=0.1,
179179
output_token_price_1m=0.4,
180180
),
181181
Model(
182-
id="gemini-2.5-flash-preview-05-20",
182+
id="gemini-2.5-flash",
183183
provider="google",
184-
name="Gemini 2.5 Flash Preview",
184+
name="Gemini 2.5 Flash ",
185185
description="Gemini 2.5 Flash is Google's first fully hybrid reasoning AI model, designed for high speed and cost-efficiency, allowing developers to toggle advanced reasoning on or off as needed.",
186186
capabilities=["tool_use", "vision", "thinking"],
187-
input_token_price_1m=0.15,
188-
output_token_price_1m=3.5,
187+
input_token_price_1m=0.3,
188+
output_token_price_1m=2.5,
189189
default=True,
190190
),
191191
Model(
@@ -195,7 +195,7 @@
195195
description="Gemini 2.5 Pro with thinking",
196196
capabilities=["tool_use", "thinking", "vision"],
197197
input_token_price_1m=1.25,
198-
output_token_price_1m=2.5,
198+
output_token_price_1m=10,
199199
),
200200
]
201201

AgentCrew/modules/memory/chroma_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(
5555
elif self.llm_service.provider_name == "deepinfra":
5656
self.llm_service.model = "google/gemma-3-27b-it"
5757
elif self.llm_service.provider_name == "github_copilot":
58-
self.llm_service.model = "gpt-4o-mini"
58+
self.llm_service.model = "gpt-4.1"
5959

6060
# Create or get collection for storing memories
6161
if os.getenv("VOYAGE_API_KEY"):

0 commit comments

Comments
 (0)