1
mirror of https://github.com/cocktailpeanut/dalai synced 2024-11-25 09:27:20 +01:00
dalai/demo/client.js
2023-03-13 04:38:53 -04:00

9 lines
201 B
JavaScript

const Dalai = require('../index')
new Dalai().request({
model: "7B",
prompt: "If aliens were actually time travlers from the future,",
n_predict: 400
}, (msg) => {
process.stdout.write(msg)
})