-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.ts
83 lines (69 loc) · 1.91 KB
/
app.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import dotenv from 'dotenv'
import express, { Application, Request, Response, response } from 'express';
import cors from 'cors';
import {
onStartChat,
onNotExistBriefing,
conversationWithBiuma,
createChat
} from './src/utils/bingChat';
dotenv.config()
const app: Application = express();
app.use(cors());
app.use(express.json());
// db.sequelize.sync()
// .then(() => {
// console.log("Synced db.");
// })
// .catch(err => {
// console.log("Failed to sync db: " + err.message)
// })
app.get('/api', (req, res) => {
res.send({message: 'Welcome to Biuma AI'})
})
app.get('/biuma-chat/start', (req: Request, res: Response) => {
onStartChat()
.then(response => {
res.send(response);
})
.catch(err => {
res.status(400).send({error: "Erro ao se conectar com IA"})
console.log("Erro ao se conectar com IA: ", err);
})
});
app.get('/biuma-chat/not_exist_briefing', (req: Request, res: Response) => {
onNotExistBriefing()
.then(response => {
res.send(response);
})
.catch(err => {
res.status(400).send({error: "Erro ao se conectar com IA"})
console.log("Erro ao se conectar com IA: ", err);
})
});
app.post('/biuma-chat/chat', (req: Request, res: Response) => {
const { msg, conversation } = req.body
conversationWithBiuma(msg, conversation)
.then(response => {
res.send(response);
})
.catch(err => {
res.status(400).send({error: "Erro ao se conectar com IA"})
console.log("Erro ao se conectar com IA: ", err);
})
});
app.get('/biuma-chat/chatAI', (req: Request, res: Response) => {
// const { msg, conversation } = req.body
createChat()
.then(response => {
res.send(response);
})
.catch(err => {
res.status(400).send({error: "Erro ao se conectar com IA"})
console.log("Erro ao se conectar com IA: ", err);
})
});
const port = process.env.PORT || 3030;
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});