GuglielmoTor commited on
Commit
31a4de6
·
verified ·
1 Parent(s): 2498abf

Update features/insight_and_tasks/agents/task_extraction_agent.py

Browse files
features/insight_and_tasks/agents/task_extraction_agent.py CHANGED
@@ -43,7 +43,7 @@ class TaskExtractionAgent:
43
  current_date: The current date to use for quarter calculations. Defaults to today.
44
  """
45
  self.api_key = api_key # Store if needed by LlmAgent or other components
46
- self.model_name = "gemini-2.5-pro-preview-05-06"#model_name or DEFAULT_AGENT_MODEL
47
  self.current_date = current_date or datetime.utcnow().date() # Use date object for consistency
48
 
49
  # LlmAgent is initialized with dynamic instruction and output schema
 
43
  current_date: The current date to use for quarter calculations. Defaults to today.
44
  """
45
  self.api_key = api_key # Store if needed by LlmAgent or other components
46
+ self.model_name = model_name or DEFAULT_AGENT_MODEL
47
  self.current_date = current_date or datetime.utcnow().date() # Use date object for consistency
48
 
49
  # LlmAgent is initialized with dynamic instruction and output schema