UNPKG

@convo-lang/convo-lang

Version:
16 lines 517 B
import { passthroughConvoInputType, passthroughConvoOutputType } from "./convo-lib"; export class CallbackConvoCompletionService { inputType = passthroughConvoInputType; outputType = passthroughConvoOutputType; canComplete(model, flat) { return true; } completeAsync; constructor(completeAsync) { this.completeAsync = completeAsync; } completeConvoAsync(flat) { return this.completeAsync(flat); } } //# sourceMappingURL=CallbackConvoCompletionService.js.map