mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-13 03:13:41 +08:00
10 lines
340 B
Java
10 lines
340 B
Java
package vip.mate.goal.service;
|
|
|
|
/** Explicit user controls, distinct from a graph segment reaching its limit. */
|
|
public final class GoalExecutionSignal {
|
|
private GoalExecutionSignal() {}
|
|
public record Stop(String conversationId) {}
|
|
public record Resume(Long goalId) {}
|
|
public record TurnFinished(String conversationId) {}
|
|
}
|