mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-24 20:52:11 +00:00
mention heatmaps and timezones and their specific rules in the relevant system prompts
This commit is contained in:
parent
0af39012cd
commit
e6ed912960
@ -34,9 +34,11 @@ public sealed record ChatThread
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- Supported types are `bar`, `stacked_bar`, `line`, `pie`, and `donut`.
|
- Supported types are `bar`, `stacked_bar`, `line`, `pie`, `donut`, `heatmap`, and `time_series`.
|
||||||
- Every series needs exactly one finite numeric value per category.
|
- Every series needs exactly one finite numeric value per category.
|
||||||
- Pie and donut charts need exactly one series and non-negative values.
|
- Pie and donut charts need exactly one series and non-negative values.
|
||||||
|
- For heatmaps, categories are the columns, series names are the rows, and series values are the cells.
|
||||||
|
- Time series categories must contain at least two strictly increasing ISO 8601 timestamps with `Z` or an explicit UTC offset.
|
||||||
- Add a concise caption that correctly contextualizes the chart and may explain the chart's main finding.
|
- Add a concise caption that correctly contextualizes the chart and may explain the chart's main finding.
|
||||||
- Use only the fields shown above.
|
- Use only the fields shown above.
|
||||||
- Keep other explanatory text outside the chart block.
|
- Keep other explanatory text outside the chart block.
|
||||||
|
|||||||
@ -99,7 +99,7 @@ When a chart is useful or explicitly requested, you may include one or more comp
|
|||||||
"schema_version": 1,
|
"schema_version": 1,
|
||||||
"type": "bar",
|
"type": "bar",
|
||||||
"title": "Chart title",
|
"title": "Chart title",
|
||||||
"caption": "Contextual interpretation of the diagram",
|
"caption": "Contextual interpretation of the chart",
|
||||||
"data": {
|
"data": {
|
||||||
"categories": ["A", "B"],
|
"categories": ["A", "B"],
|
||||||
"series": [
|
"series": [
|
||||||
@ -112,10 +112,12 @@ When a chart is useful or explicitly requested, you may include one or more comp
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- Supported types are `bar`, `stacked_bar`, `line`, `pie`, and `donut`.
|
- Supported types are `bar`, `stacked_bar`, `line`, `pie`, `donut`, `heatmap`, and `time_series`.
|
||||||
- Every series needs exactly one finite numeric value per category.
|
- Every series needs exactly one finite numeric value per category.
|
||||||
- Pie and donut charts need exactly one series and non-negative values.
|
- Pie and donut charts need exactly one series and non-negative values.
|
||||||
- Add a concise caption that correctly contextualizes the diagram and may explain the chart's main finding.
|
- For heatmaps, categories are the columns, series names are the rows, and series values are the cells.
|
||||||
|
- Time series categories must contain at least two strictly increasing ISO 8601 timestamps with `Z` or an explicit UTC offset.
|
||||||
|
- Add a concise caption that correctly contextualizes the chart and may explain the chart's main finding.
|
||||||
- Use only the fields shown above.
|
- Use only the fields shown above.
|
||||||
- Keep other explanatory text outside the chart block.
|
- Keep other explanatory text outside the chart block.
|
||||||
````
|
````
|
||||||
|
|||||||
@ -70,7 +70,7 @@ When a chart is useful or explicitly requested, you may include one or more comp
|
|||||||
"schema_version": 1,
|
"schema_version": 1,
|
||||||
"type": "bar",
|
"type": "bar",
|
||||||
"title": "Chart title",
|
"title": "Chart title",
|
||||||
"caption": "Contextual interpretation of the diagram",
|
"caption": "Contextual interpretation of the chart",
|
||||||
"data": {
|
"data": {
|
||||||
"categories": ["A", "B"],
|
"categories": ["A", "B"],
|
||||||
"series": [
|
"series": [
|
||||||
@ -83,10 +83,12 @@ When a chart is useful or explicitly requested, you may include one or more comp
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- Supported types are `bar`, `stacked_bar`, `line`, `pie`, and `donut`.
|
- Supported types are `bar`, `stacked_bar`, `line`, `pie`, `donut`, `heatmap`, and `time_series`.
|
||||||
- Every series needs exactly one finite numeric value per category.
|
- Every series needs exactly one finite numeric value per category.
|
||||||
- Pie and donut charts need exactly one series and non-negative values.
|
- Pie and donut charts need exactly one series and non-negative values.
|
||||||
- Add a concise caption that correctly contextualizes the diagram and may explain the chart's main finding.
|
- For heatmaps, categories are the columns, series names are the rows, and series values are the cells.
|
||||||
|
- Time series categories must contain at least two strictly increasing ISO 8601 timestamps with `Z` or an explicit UTC offset.
|
||||||
|
- Add a concise caption that correctly contextualizes the chart and may explain the chart's main finding.
|
||||||
- Use only the fields shown above.
|
- Use only the fields shown above.
|
||||||
- Keep other explanatory text outside the chart block.
|
- Keep other explanatory text outside the chart block.
|
||||||
]]
|
]]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user