Spaces:
Runtime error
Runtime error
Commit
·
5531fc6
1
Parent(s):
fb2a365
Update task status options in documentation and tools to remove 'In Review'
Browse files
app/agents/NotionProjectAgent/instructions.md
CHANGED
@@ -32,7 +32,7 @@ You may ask the ResearchAndReportAgent to help you with the creation of the WBS
|
|
32 |
|
33 |
### Task Status Reporting
|
34 |
|
35 |
-
When asked for a project status report, retrieve all tasks from the Notion database using the GetTasksTool. Group tasks by status (Backlog, In Progress,
|
36 |
|
37 |
### Project Timeline Management
|
38 |
|
|
|
32 |
|
33 |
### Task Status Reporting
|
34 |
|
35 |
+
When asked for a project status report, retrieve all tasks from the Notion database using the GetTasksTool. Group tasks by status (Backlog, In Progress, Testing, Completed) and provide a summary of each group. For tasks that are overdue (due date is in the past and status is not Completed), highlight them and suggest using UpdateTaskTool to adjust either the due date or status. If there are high priority tasks that haven't been started, emphasize these in your report.
|
36 |
|
37 |
### Project Timeline Management
|
38 |
|
app/agents/NotionProjectAgent/tools/CreateTask.py
CHANGED
@@ -35,7 +35,7 @@ class CreateTaskTool(BaseTool):
|
|
35 |
|
36 |
status: str = Field(
|
37 |
default=None,
|
38 |
-
description="Status of the task. Options: Backlog, In Progress,
|
39 |
)
|
40 |
|
41 |
priority: str = Field(
|
|
|
35 |
|
36 |
status: str = Field(
|
37 |
default=None,
|
38 |
+
description="Status of the task. Options: Backlog, In Progress, Testing, Completed.",
|
39 |
)
|
40 |
|
41 |
priority: str = Field(
|
app/agents/NotionProjectAgent/tools/GetTasks.py
CHANGED
@@ -24,7 +24,7 @@ class GetTasksTool(BaseTool):
|
|
24 |
|
25 |
status: str = Field(
|
26 |
default=None,
|
27 |
-
description="Filter tasks by status. Options: Backlog, In Progress,
|
28 |
)
|
29 |
|
30 |
priority: str = Field(
|
|
|
24 |
|
25 |
status: str = Field(
|
26 |
default=None,
|
27 |
+
description="Filter tasks by status. Options: Backlog, In Progress, Testing, Completed.",
|
28 |
)
|
29 |
|
30 |
priority: str = Field(
|
app/agents/NotionProjectAgent/tools/UpdateTask.py
CHANGED
@@ -39,7 +39,7 @@ class UpdateTaskTool(BaseTool):
|
|
39 |
|
40 |
status: str = Field(
|
41 |
default=None,
|
42 |
-
description="New status of the task. Options: Backlog, In Progress,
|
43 |
)
|
44 |
|
45 |
priority: str = Field(
|
|
|
39 |
|
40 |
status: str = Field(
|
41 |
default=None,
|
42 |
+
description="New status of the task. Options: Backlog, In Progress, Testing, Completed.",
|
43 |
)
|
44 |
|
45 |
priority: str = Field(
|