Jofthomas HF Staff commited on
Commit
ba5a866
·
verified ·
1 Parent(s): b771950

Update agents.py

Browse files
Files changed (1) hide show
  1. agents.py +1 -1
agents.py CHANGED
@@ -233,7 +233,7 @@ class LLMAgentBase(Player):
233
  # --- Google Gemini Agent ---
234
  class GeminiAgent(LLMAgentBase):
235
  """Uses Google Gemini API for decisions."""
236
- def __init__(self, api_key: str = None, model: str = "gemini-1.5-flash", avatar: str = "steven", *args, **kwargs):
237
  # Set avatar before calling parent constructor
238
  kwargs['avatar'] = avatar
239
  kwargs['start_timer_on_battle_start'] = True
 
233
  # --- Google Gemini Agent ---
234
  class GeminiAgent(LLMAgentBase):
235
  """Uses Google Gemini API for decisions."""
236
+ def __init__(self, api_key: str = None, model: str = "gemini-2.5-pro-preview-03-25", avatar: str = "steven", *args, **kwargs):
237
  # Set avatar before calling parent constructor
238
  kwargs['avatar'] = avatar
239
  kwargs['start_timer_on_battle_start'] = True