|
@@ -62,6 +62,17 @@ const tools = [
|
|
|
required: ['sender']
|
|
required: ['sender']
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ name: 'get_lepao_count_balance',
|
|
|
|
|
+ description: '查询当前用户剩余的乐跑次数余额。用户只问“我还有多少次乐跑”“剩余乐跑次数”“乐跑余额”时使用此工具;如果用户要查看变动原因或历史流水,再使用 list_lepao_count_ledger。',
|
|
|
|
|
+ inputSchema: {
|
|
|
|
|
+ type: 'object',
|
|
|
|
|
+ properties: {
|
|
|
|
|
+ sender
|
|
|
|
|
+ },
|
|
|
|
|
+ required: ['sender']
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
name: 'list_goods',
|
|
name: 'list_goods',
|
|
|
description: '查询当前上架且可购买的商品列表。用户询问价格、套餐、库存、分类、权益或购买选项前使用。支持关键词、分类筛选和分页返回,响应不包含内部 id 和不必要的媒体字段。',
|
|
description: '查询当前上架且可购买的商品列表。用户询问价格、套餐、库存、分类、权益或购买选项前使用。支持关键词、分类筛选和分页返回,响应不包含内部 id 和不必要的媒体字段。',
|
|
@@ -100,7 +111,7 @@ const tools = [
|
|
|
area: { type: 'string', description: '要使用的跑区。取值只能是:["兰花湖校区跑区", "主校区北跑区", "主校区南跑区", "重庆工商大学茶园校区"]。用户要求随机跑区时使用空值。' },
|
|
area: { type: 'string', description: '要使用的跑区。取值只能是:["兰花湖校区跑区", "主校区北跑区", "主校区南跑区", "重庆工商大学茶园校区"]。用户要求随机跑区时使用空值。' },
|
|
|
auto_time: { type: 'integer', minimum: -1, maximum: 23, description: '自动乐跑开始小时,范围 7-21;使用 -1 表示随机时间。' },
|
|
auto_time: { type: 'integer', minimum: -1, maximum: 23, description: '自动乐跑开始小时,范围 7-21;使用 -1 表示随机时间。' },
|
|
|
auto_run: { type: 'integer', enum: [0, 1], description: '自动乐跑开关:1 开启,0 关闭。' },
|
|
auto_run: { type: 'integer', enum: [0, 1], description: '自动乐跑开关:1 开启,0 关闭。' },
|
|
|
- target_count: { type: 'number', minimum: 0, maximum: 99, description: '目标总乐跑次数,范围 0-99。开启自动乐跑时,目标次数不能小于或等于账号已累计完成次数,除非设置为 0。' },
|
|
|
|
|
|
|
+ target_count: { type: 'number', minimum: 0, maximum: 99, description: '目标总乐跑次数,范围 0-99。开启自动乐跑时,目标次数不能小于或等于账号已累计完成次数,除非设置为 0,0为不限次。' },
|
|
|
auto_day: { type: 'array', items: { type: 'integer', minimum: 0, maximum: 6 }, description: '自动乐跑星期。0 周日,1 周一,依此类推,6 周六。' },
|
|
auto_day: { type: 'array', items: { type: 'integer', minimum: 0, maximum: 6 }, description: '自动乐跑星期。0 周日,1 周一,依此类推,6 周六。' },
|
|
|
notice_type: { type: 'string', enum: ['email', 'none', 'bot'], description: '乐跑后的通知渠道:email 邮件,bot 机器人,none 不通知。' },
|
|
notice_type: { type: 'string', enum: ['email', 'none', 'bot'], description: '乐跑后的通知渠道:email 邮件,bot 机器人,none 不通知。' },
|
|
|
notes: { type: 'string', description: '该账号的用户可见备注。' }
|
|
notes: { type: 'string', description: '该账号的用户可见备注。' }
|