You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--task "Analyze the distribution of incidents across categories in 'incident_records.csv' to identify imbalances, inconsistencies, or anomalies, and determine their root cause." \
210
-
--files ./docs/data/incident_records.csv
210
+
--datasource ./docs/data/incident_records.csv
211
211
```
212
212
213
-
**Note**: Files uploaded with `--files` are automatically copied to `/workspace` in the sandbox. Generated files are available in `sessions_mount_dir` subdirectories.
213
+
**Note**: Files uploaded with `--datasource` are automatically copied to `/workspace` in the sandbox. Generated files are available in `sessions_mount_dir` subdirectories.
214
214
215
215
#### Enable Long-Term Memory Service (General Mode Only)
216
216
To enable the long-term memory service in General mode, you need to:
--task "Analyze the distribution of incidents across categories in 'incident_records.csv' to identify imbalances, inconsistencies, or anomalies, and determine their root cause." \
Copy file name to clipboardExpand all lines: alias/src/alias/agent/agents/ds_agent_utils/built_in_prompt/_log_to_markdown_prompt.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,8 +44,13 @@ Each task in the roadmap contains:
44
44
- Brief Response
45
45
- Detailed Report
46
46
- You should choose the template that is most appropriate for the user task.
47
-
-**Brief Respoonse Template** should ONLY be used when the user asks for a simple data query task, where ONLY numeric or concise string values are returned, and complex analysis or research are not required.
48
-
-**Detailed Report Template** should be used when the user asks for a detailed analysis of the data, where the analysis and research are required.
47
+
-**Brief Respoonse Template** should ONLY be used when the user asks for a
48
+
simple, static data point (e.g., a total count or a specific value), where
49
+
the answer is returned as a single numeric or concise string value with no
50
+
analysis, transformation, comparison, or interpretation required.
51
+
-**Detailed Report Template** should be used whenever the task involves
52
+
distribution, discrepancy, imbalance, comparison, trend, root cause, or
53
+
any form of analysis, interpretation, or evidence generation.
49
54
50
55
2. Data Source Constraints
51
56
-**ONLY use information explicitly present in the log file**
@@ -103,7 +108,7 @@ You MUST ensure all captions, subtitles, and other contents in the report are wr
103
108
- "brief_response": The brief response content.
104
109
- When 'is_brief_response' is True, this field should be fulfilled with the brief response content following the **Brief Response Template**.
105
110
- When 'is_brief_response' is False, this field should be a concise summary of the detailed report in in markdown format illustrating the key findings and insights.
106
-
- "detailed_report_content": The detailed markdown report content following the **Detailed Report Template**. This field is ONLY generated when 'is_brief_response' is False, otherwise fulfill an empty string.
111
+
- "report_content": The detailed markdown report content following the **Detailed Report Template**. This field is ONLY generated when 'is_brief_response' is False, otherwise fulfill an empty string.
107
112
- You MUST ensure the JSON object is a valid JSON string and can be parsed by json.loads().
0 commit comments