mirror of
https://github.com/vitalityAI/therapist.git
synced 2025-04-16 17:40:16 -04:00
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
import { Conversation } from "./chat.js"
|
|
|
|
const main = async () => {
|
|
let convo = new Conversation()
|
|
let res = await convo.message("I'm just feeling sad.")
|
|
console.log("RESPONSE", res)
|
|
res = await convo.message("Yeah. My parents got divorced last week, and I think it's my fault.")
|
|
console.log("RESPONSE", res)
|
|
}
|
|
|
|
main()
|