reorganize

This commit is contained in:
Claeb101 2023-03-05 04:14:11 -05:00
parent a6b7338308
commit 4c715c5f15
8 changed files with 6 additions and 17 deletions

View File

@ -19,8 +19,8 @@ import {
transferSession,
checkOperatorReady,
postSummary,
} from "./session.js";
import { chat, summarize } from "./chat.js";
} from "../lib/session.js";
import { chat, summarize } from "../lib/chat.js";
const app = Router();
app.use(json());

View File

@ -1,7 +1,7 @@
import * as dotenv from "dotenv";
import { Router } from "express";
import { authorize } from "./authorize.js";
import { db } from "./db.js";
import { authorize } from "../lib/authorize.js";
import { db } from "../lib/db.js";
dotenv.config();
const app = Router();

View File

@ -1,6 +1,6 @@
import express from "express";
import call from "./call.js";
import operator from "./operator.js"
import call from "./api/call.js";
import operator from "./api/operator.js"
import cors from "cors"
const app = express();

View File

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