generated from template/apps-template
21 lines
712 B
TypeScript
21 lines
712 B
TypeScript
import { app, sleep, token } from './common.ts';
|
||
|
||
|
||
const res = await app.call({
|
||
path: 'noco-life',
|
||
key: "chat",
|
||
payload: {
|
||
// question: '今天我需要做什么事情?',
|
||
// question: '任务5 完成了,帮我判断下一次运行时间应该是什么时候?',
|
||
// question: '任务59 完成了',
|
||
// question: '我的多维表格配置'
|
||
// question: '记录一下,今天洗了澡',
|
||
// question: '编辑任务123,进行补充, 对opencode进行描述介绍。',
|
||
// question: '编辑任务94,对内容注释',
|
||
// question: '任务59和124完成了',
|
||
question: '任务 126 完成',
|
||
token: token,
|
||
},
|
||
})
|
||
|
||
console.log('res', res.code, res.body, res.message); |