analyze_numbers
Analyze lottery number statistics, identifying hot and cold numbers, for games like Double Color Ball and Seven Happiness Lottery. Specify lottery type and periods for detailed insights.
Instructions
分析彩票号码统计信息,包括热号、冷号等
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lottery_type | Yes | 彩票类型 | |
periods | No | 分析期数 |
Input Schema (JSON Schema)
{
"properties": {
"lottery_type": {
"description": "彩票类型",
"enum": [
"双色球",
"福彩3D",
"七乐彩",
"快乐8"
],
"type": "string"
},
"periods": {
"default": 30,
"description": "分析期数",
"maximum": 500,
"minimum": 5,
"type": "integer"
}
},
"required": [
"lottery_type"
],
"type": "object"
}