Flowise/packages/server/src/controllers/openai-realtime/index.ts

70 lines
2.4 KiB
TypeScript

import { Request, Response, NextFunction } from 'express'
import openaiRealTimeService from '../../services/openai-realtime'
import { InternalFlowiseError } from '../../errors/internalFlowiseError'
import { StatusCodes } from 'http-status-codes'
const getAgentTools = async (req: Request, res: Response, next: NextFunction) => {
try {
if (typeof req.params === 'undefined' || !req.params.id) {
throw new InternalFlowiseError(
StatusCodes.PRECONDITION_FAILED,
`Error: openaiRealTimeController.getAgentTools - id not provided!`
)
}
const apiResponse = await openaiRealTimeService.getAgentTools(req.params.id)
return res.json(apiResponse)
} catch (error) {
next(error)
}
}
const executeAgentTool = async (req: Request, res: Response, next: NextFunction) => {
try {
if (typeof req.params === 'undefined' || !req.params.id) {
throw new InternalFlowiseError(
StatusCodes.PRECONDITION_FAILED,
`Error: openaiRealTimeController.executeAgentTool - id not provided!`
)
}
if (!req.body) {
throw new InternalFlowiseError(
StatusCodes.PRECONDITION_FAILED,
`Error: openaiRealTimeController.executeAgentTool - body not provided!`
)
}
if (!req.body.chatId) {
throw new InternalFlowiseError(
StatusCodes.PRECONDITION_FAILED,
`Error: openaiRealTimeController.executeAgentTool - body chatId not provided!`
)
}
if (!req.body.toolName) {
throw new InternalFlowiseError(
StatusCodes.PRECONDITION_FAILED,
`Error: openaiRealTimeController.executeAgentTool - body toolName not provided!`
)
}
if (!req.body.inputArgs) {
throw new InternalFlowiseError(
StatusCodes.PRECONDITION_FAILED,
`Error: openaiRealTimeController.executeAgentTool - body inputArgs not provided!`
)
}
const apiResponse = await openaiRealTimeService.executeAgentTool(
req.params.id,
req.body.chatId,
req.body.toolName,
req.body.inputArgs,
req.body.apiMessageId
)
return res.json(apiResponse)
} catch (error) {
next(error)
}
}
export default {
getAgentTools,
executeAgentTool
}