rename transfersynthesis class
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good

This commit is contained in:
austin 2024-12-30 16:00:09 -05:00
parent 31b1181ed4
commit 42d8e4eff6
4 changed files with 8 additions and 5 deletions

View File

@ -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

View File

@ -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());

View File

@ -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);

View File

@ -7,7 +7,7 @@ import org.studiorailgun.conversation.tracking.Sentence;
/**
* Evaluation for transfer quotes
*/
public class TransferEval {
public class TransferSynthesis {
/**