fixed chat?

This commit is contained in:
Claeb101 2023-03-04 21:44:05 -05:00
parent 0b399d17c8
commit 6fb6ebcb3a
2 changed files with 8 additions and 10 deletions

View File

@ -1,6 +1,6 @@
import { Configuration, OpenAIApi } from "openai";
import * as dotenv from "dotenv";
import { getMessages } from "./session";
import { getMessages } from "./session.js";
import { Role } from "@prisma/client";
dotenv.config();
@ -31,8 +31,6 @@ export const chat = async (callId) => {
},
];
for (let msg of msgs) {
messages.push({
role: convertRole(msg.role),
@ -40,8 +38,10 @@ export const chat = async (callId) => {
});
}
await openai.createChatCompletion({
const res = await openai.createChatCompletion({
model: "gpt-3.5-turbo",
messages: messages,
});
return res.data.choices[0].message.content
};

View File

@ -1,11 +1,9 @@
import { Conversation } from "./chat.js"
import { chat } from "./chat.js"
import { createSession } from "./session.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)
// const session = await createSession("testid", "12345")
console.log(await chat("testid"))
}
main()