fix sampling

This commit is contained in:
TerminalMan
2025-01-08 20:12:43 +00:00
parent 38b63c5746
commit ae0197e374

View File

@@ -411,7 +411,7 @@ export const createServer = () => {
maxTokens, maxTokens,
); );
return { return {
content: [{ type: "text", text: `LLM sampling result: ${result}` }], content: [{ type: "text", text: `LLM sampling result: ${result.content.text}` }],
}; };
} }