mirror of
https://github.com/vitalityAI/therapist.git
synced 2025-04-06 04:50:16 -04:00
reorganize
This commit is contained in:
parent
a6b7338308
commit
4c715c5f15
|
@ -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());
|
|
@ -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();
|
|
@ -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();
|
||||
|
|
11
src/test.js
11
src/test.js
|
@ -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()
|
Loading…
Reference in New Issue
Block a user