Spaces:
Sleeping
Sleeping
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 =
|
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
|