forecast_demand
Predict product demand using historical sales data and seasonal patterns to optimize inventory planning for art supplies.
Instructions
Forecast product demand based on historical sales data and seasonal trends.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | Yes | Forecast period: week, month, quarter | |
sku | Yes | Product SKU |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"description": "Forecast period: week, month, quarter",
"type": "string"
},
"sku": {
"description": "Product SKU",
"type": "string"
}
},
"required": [
"sku",
"period"
],
"type": "object"
}