no caller phone unique

This commit is contained in:
Claeb101 2023-03-04 21:48:06 -05:00
parent 6fb6ebcb3a
commit ebd90d7fe0
3 changed files with 7 additions and 3 deletions

View File

@ -18,7 +18,7 @@ model Session {
endedAt DateTime?
callId String @unique
callerPhone String @unique
callerPhone String
operatorPhone String? @unique
operator Operator? @relation(fields: [operatorPhone], references: [phoneNumber])

View File

@ -38,6 +38,8 @@ export const chat = async (callId) => {
});
}
console.log(messages)
const res = await openai.createChatCompletion({
model: "gpt-3.5-turbo",
messages: messages,

View File

@ -1,8 +1,10 @@
import { Role } from "@prisma/client"
import { chat } from "./chat.js"
import { createSession } from "./session.js"
import { addMessage, createSession } from "./session.js"
const main = async () => {
// const session = await createSession("testid", "12345")
const session = await createSession("testid", "12345")
await addMessage("testid", Role.USER, "Hey. I'm feeling ")
console.log(await chat("testid"))
}