Module: Legion::Extensions::Agentic::Inference::Prediction::Helpers::Modes
- Defined in:
- lib/legion/extensions/agentic/inference/prediction/helpers/modes.rb
Constant Summary collapse
- REASONING_MODES =
Four reasoning modes (spec: prediction-engine-spec.md)
%i[fault_localization functional_mapping boundary_testing counterfactual].freeze
- PREDICTION_CONFIDENCE_MIN =
0.65- MAX_PREDICTIONS_PER_TICK =
5- PREDICTION_HORIZON =
1 hour default lookahead
3600
Class Method Summary collapse
Class Method Details
.valid_mode?(mode) ⇒ Boolean
19 20 21 |
# File 'lib/legion/extensions/agentic/inference/prediction/helpers/modes.rb', line 19 def valid_mode?(mode) REASONING_MODES.include?(mode) end |