GuglielmoTor commited on
Commit
af334ac
·
verified ·
1 Parent(s): d0b4c72

Update features/insight_and_tasks/agents/task_extraction_agent.py

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