add total forms default to 1, for two reasons. true LOFT will be requesting a single form, and also we do not have the ability to set form count in ui yet

This commit is contained in:
Josh Burman
2021-11-22 17:37:57 +00:00
parent 88ef6b2e03
commit da17748103

View File

@ -13,7 +13,7 @@ class SolverRun(BaseModel):
irt_model: IRTModel irt_model: IRTModel
objective_function: ObjectiveFunction objective_function: ObjectiveFunction
total_form_items: int total_form_items: int
total_forms: int total_forms: int = 1
theta_cut_score: float = 0.00 theta_cut_score: float = 0.00
advanced_options: Optional[AdvancedOptions] advanced_options: Optional[AdvancedOptions]
engine: str engine: str