first commit

This commit is contained in:
2026-06-09 14:50:53 +08:00
commit 6aebc60bfd
55 changed files with 3126 additions and 0 deletions

9
src/ollama/__test__.js Normal file
View File

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