Files
memind/scenarios/token-benchmark-chat.json
T
john 9332bacabd
Memind CI / Test, build, and release guards (push) Failing after 12m44s
feat(router): improve direct_chat fast-path and add 103 token env sync
Route explicit text-only Q&A away from Agent before page-generation rules,
and add a script to enable Router + tighter memory budgets on 103 without
changing the global deepseek-v4-pro model.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-25 15:13:22 +08:00

40 lines
916 B
JSON

{
"id": "token-benchmark-chat",
"name": "Token 基准:Direct Chat 三轮",
"description": "简单对话,不走做页面 Agent,对比 pro vs flash",
"account": {
"username": "john2",
"password": "888888"
},
"steps": [
{
"action": "chat",
"label": "打招呼",
"message": "hi",
"expect": {
"assistantMinChars": 1,
"timeoutMs": 120000
}
},
{
"action": "chat",
"label": "苏州简介",
"message": "用三句话介绍苏州园林,不要生成页面",
"expect": {
"assistantMinChars": 20,
"timeoutMs": 120000,
"replyKeywords": ["苏州"]
}
},
{
"action": "chat",
"label": "追问",
"message": "推荐一个最适合第一次去的,一句话说明理由",
"expect": {
"assistantMinChars": 10,
"timeoutMs": 120000
}
}
]
}