Files
wechat-bot-ai/src/ollama/__test__.js
2026-06-09 14:50:53 +08:00

10 lines
207 B
JavaScript

import { getDifyReply } from './index.js'
// 测试 dify api
async function testMessage() {
const message = await getDifyReply('hello')
console.log('🌸🌸🌸 / message: ', message)
}
testMessage()