Package edu.neu.ccs.task.agent

Examples of edu.neu.ccs.task.agent.Agent


 
  public DialogueSession create(int id, User user, Map<String,String[]> params) throws Exception {
    int userId = user.getId();
    System.out.println("creating DTask session for " + userId);
   
    Agent agent = factory.createAgent(models);
    initAgent(id, user, agent);
    initPlan(id, user, agent);
    return new DTaskSession(agent, userId, persistence);
  }
View Full Code Here

TOP

Related Classes of edu.neu.ccs.task.agent.Agent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.