All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cmu.sv.natural_language_generation.TopLevelNLGTemplate Maven / Gradle / Ivy

Go to download

A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).

There is a newer version: 0.7.0
Show newest version
package edu.cmu.sv.natural_language_generation;

import edu.cmu.sv.semantics.SemanticsModel;
import edu.cmu.sv.yoda_environment.YodaEnvironment;
import org.apache.commons.lang3.tuple.ImmutablePair;

/**
 * Created by David Cohen on 6/13/14.
 *
 * Interface for top level NLG2 template
 *
 */
public interface TopLevelNLGTemplate {
    /*
    * Constraints are passed from above,
    * and the template generates a string /
    * completed / elaborated constraints to pass back as output
    * */
    ImmutablePair generate(SemanticsModel constraints, YodaEnvironment yodaEnvironment);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy