chatgpt-plugin/client/test/ChatGLM4ClientTest.js
2024-01-17 13:06:59 +08:00

17 lines
372 B
JavaScript

import { ChatGLM4Client } from '../ChatGLM4Client.js'
async function sendMsg () {
const client = new ChatGLM4Client({
refreshToken: '',
debug: true
})
let res = await client.sendMessage('你好啊')
console.log(res)
}
// global.redis = null
// global.logger = {
// info: console.log,
// warn: console.warn,
// error: console.error
// }
// sendMsg()