Add AI chat feature
This commit is contained in:
parent
80056b3728
commit
6a5041be43
15 changed files with 1259 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import Elysia from "elysia";
|
||||
import { health } from "./modules/health";
|
||||
import { chat } from "./modules/chat";
|
||||
|
||||
export const app = new Elysia({ prefix: "/api" }).use(health);
|
||||
export const app = new Elysia({ prefix: "/api" }).use(health).use(chat);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue