skailan-ai
Version:
Servicio de IA y procesamiento de lenguaje natural para Skailan
8 lines • 370 B
JavaScript
import { Router } from 'express';
import { classifyIntent, classifyConversationIntent, getIntents } from '../controllers/intentController';
const router = Router();
router.post('/classify', classifyIntent);
router.post('/classify-conversation', classifyConversationIntent);
router.get('/list', getIntents);
export default router;
//# sourceMappingURL=intentRoutes.js.map