CommandRoutingHypothesis

sealed interface CommandRoutingHypothesis

Hypothetical shapes of inbound command input a host might provide.

Inheritors

Types

Link copied to clipboard
data class RawLine(val line: String) : CommandRoutingHypothesis

Host provides raw text after a leading slash (or similar).

Link copied to clipboard

Host provides a structured argument model.

Link copied to clipboard
data class Tokens(val label: String, val args: List<String>) : CommandRoutingHypothesis

Host provides a pre-tokenized representation.