16 lines
506 B
TypeScript
16 lines
506 B
TypeScript
import { tool } from "@opencode-ai/plugin";
|
|
|
|
export default tool({
|
|
description:
|
|
"提交直接展示给用户的最终回答。只能在全部业务动作和其他工具调用完成后调用一次;调用后不得继续调用任何工具或输出额外文本。",
|
|
args: {
|
|
answer: tool.schema
|
|
.string()
|
|
.min(1)
|
|
.describe("直接展示给用户的完整最终回答,使用简体中文和 Markdown。"),
|
|
},
|
|
async execute() {
|
|
return "最终回答已提交。";
|
|
},
|
|
});
|