Skip to content

Commit 2c430db

Browse files
authored
Merge pull request #51 from lambda-feedback/payload
fix: remove unused fields
2 parents b84f435 + 4f41b9a commit 2c430db

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

evaluation_function/schemas/params.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,4 @@ class Params(BaseModel):
4242
check_completeness: bool = Field(default=False, description="Check if DFA is complete")
4343

4444
# UI options
45-
highlight_errors: bool = Field(default=True, description="Include element IDs for UI highlighting")
46-
show_counterexample: bool = Field(default=True, description="Show counterexample if languages differ")
47-
48-
# Test generation
49-
max_test_length: int = Field(default=10, ge=1, le=50, description="Max length for generated test strings")
50-
51-
is_dev: bool = Field(
52-
default=False,
53-
description="Flag indicating if running in development mode"
54-
)
45+
highlight_errors: bool = Field(default=True, description="Include element IDs for UI highlighting")

0 commit comments

Comments
 (0)