rename transfersynthesis class
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good
This commit is contained in:
parent
31b1181ed4
commit
42d8e4eff6
@ -6,8 +6,8 @@ sitting in a tavern by a fireplace
|
||||
|
||||
|
||||
|
||||
When generating conversation openers, check if the ai "knows" the player
|
||||
- if they do not, use a broad profile query (ie "who are you?")
|
||||
Comprehend the sentence "My name is ${name}"
|
||||
- Transfer statement eval
|
||||
|
||||
|
||||
|
||||
|
||||
@ -46,6 +46,9 @@ public class EvaluationTree {
|
||||
} break;
|
||||
case QUERY: {
|
||||
QueryEval.evaluate(conversation, quote, sentence);
|
||||
} break;
|
||||
case TRANSFER : {
|
||||
|
||||
} break;
|
||||
default: {
|
||||
throw new UnsupportedOperationException("Unsupported quote function: " + sentence.getFunction());
|
||||
|
||||
@ -2,7 +2,7 @@ package org.studiorailgun.conversation.evaluators.synthesis;
|
||||
|
||||
import org.studiorailgun.conversation.evaluators.greet.GreetingEval;
|
||||
import org.studiorailgun.conversation.evaluators.opener.OpenerSynthesis;
|
||||
import org.studiorailgun.conversation.evaluators.transfer.TransferEval;
|
||||
import org.studiorailgun.conversation.evaluators.transfer.TransferSynthesis;
|
||||
import org.studiorailgun.conversation.tracking.Conversation;
|
||||
import org.studiorailgun.conversation.tracking.Sentence;
|
||||
|
||||
@ -24,7 +24,7 @@ public class ResponseEval {
|
||||
conversation.getGreetingData().getHaveGreeted().add(conversation.getSelf());
|
||||
} break;
|
||||
case ANSWER: {
|
||||
response = TransferEval.synthesize(conversation);
|
||||
response = TransferSynthesis.synthesize(conversation);
|
||||
} break;
|
||||
case OPENER: {
|
||||
response = OpenerSynthesis.synthesize(conversation);
|
||||
|
||||
@ -7,7 +7,7 @@ import org.studiorailgun.conversation.tracking.Sentence;
|
||||
/**
|
||||
* Evaluation for transfer quotes
|
||||
*/
|
||||
public class TransferEval {
|
||||
public class TransferSynthesis {
|
||||
|
||||
|
||||
/**
|
||||
Loading…
Reference in New Issue
Block a user