mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 21:37:11 +00:00
17 lines
372 B
JavaScript
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()
|