UNPKG

lexica-dialog-core

Version:
9 lines (8 loc) 376 B
import { List } from 'immutable'; import { BotCommand, NlpService, IntentMemoryFeatures } from '../Api'; declare class ExternalNlpService implements NlpService { private readonly url; constructor(url: string); analyse(message: string, uni: string, intentMemoryFeatures?: List<IntentMemoryFeatures>): Promise<List<BotCommand>>; } export default ExternalNlpService;