InteractivityMode
Controls how runtime interaction prompts are handled in MCP mode.
- Kind:
Enum - Namespace: Repl.Mcp
- Assembly:
Repl.Mcp - Source: src/Repl.Mcp/InteractivityMode.cs
Signature
Section titled “Signature”public enum InteractivityModeFields
Section titled “Fields”PrefillThenDefaults
Section titled “PrefillThenDefaults”Use prefilled values, fall back to defaults if missing.
PrefillThenDefaults = 1Returns
Section titled “Returns”PrefillThenElicitation
Section titled “PrefillThenElicitation”Use prefilled values, then elicitation, then sampling, then fail.
PrefillThenElicitation = 2Returns
Section titled “Returns”PrefillThenFail
Section titled “PrefillThenFail”Use prefilled values, fail with descriptive error if missing.
PrefillThenFail = 0Returns
Section titled “Returns”PrefillThenSampling
Section titled “PrefillThenSampling”Use prefilled values, then sampling (skip elicitation), then fail.
PrefillThenSampling = 3