Interface BindingsFormatter
-
- All Implemented Interfaces:
public interface BindingsFormatterFormats bindings into a string representation suitable for goal ranking and intent display.
This allows Autonomy.chooseAndAccomplishGoal to work with arbitrary bindings, not just UserInput.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classBindingsFormatter.Companion
-
Method Summary
-
-
Method Detail
-
format
abstract String format(Map<String, Object> bindings)
Format the bindings map into a string representation. This string is used for:
Goal ranking (comparing against goal descriptions)
Intent display in approval requests
Logging and event tracking
- Parameters:
bindings- the bindings map passed to chooseAndAccomplishGoal- Returns:
a string representation suitable for ranking and display
-
-
-
-