Skip to content

Commit

Permalink
Desactivate playwright by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandalei97 committed Nov 30, 2023
1 parent 1333ffc commit fd6ab99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class UpdateWebsiteRequest(BaseModel):
depth: int | None = None
limit: int | None = None
use_playwright: bool = True
use_playwright: bool = False
lighthouse: MetadataConfig | None = None
technologies_and_trackers: MetadataConfig | None = None
responsiveness: MetadataConfig | None = None
Expand All @@ -26,7 +26,7 @@ class CreateWebsiteRequest(BaseModel):
url: str
depth: int = Field(ge=0, default=2)
limit: int = Field(ge=0, default=400)
use_playwright: bool = Field(default=True)
use_playwright: bool = Field(default=False)
lighthouse: MetadataConfig = Field(default=MetadataConfig())
technologies_and_trackers: MetadataConfig = Field(
default=MetadataConfig(enabled=False)
Expand Down

0 comments on commit fd6ab99

Please sign in to comment.