Files
2026-07-13 13:04:05 +08:00

9 lines
227 B
TypeScript

import type { AgentToolResult } from "@earendil-works/pi-coding-agent";
export function toToolResult(text: string): AgentToolResult<undefined> {
return {
content: [{ type: "text", text }],
details: undefined,
};
}