You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
674 B
TypeScript
27 lines
674 B
TypeScript
2 years ago
|
import express from 'express'
|
||
2 years ago
|
import { chatReply, clearChatContext } from './chatgpt'
|
||
2 years ago
|
|
||
|
const app = express()
|
||
|
|
||
|
app.use(express.json())
|
||
|
|
||
|
app.all('*', (req, res, next) => {
|
||
|
res.header('Access-Control-Allow-Origin', '*')
|
||
|
res.header('Access-Control-Allow-Headers', 'Content-Type')
|
||
|
res.header('Access-Control-Allow-Methods', '*')
|
||
|
next()
|
||
|
})
|
||
|
|
||
|
app.listen(3002, () => globalThis.console.log('Server is running on port 3002'))
|
||
|
|
||
|
app.post('/chat', async (req, res) => {
|
||
|
const { message } = req.body
|
||
2 years ago
|
const response = await chatReply(message)
|
||
2 years ago
|
res.send(response)
|
||
|
})
|
||
2 years ago
|
|
||
|
app.post('/clear', async (req, res) => {
|
||
|
const response = await clearChatContext()
|
||
|
res.send(response)
|
||
|
})
|