Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions plexe/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ def build(
self,
datasets: List[pd.DataFrame | DatasetGenerator],
provider: str | ProviderConfig = "openai/gpt-4o-mini",
timeout: int = None,
max_iterations: int = None,
timeout: int | None = None,
max_iterations: int | None = None,
run_timeout: int = 1800,
callbacks: List[Callback] = None,
callbacks: List[Callback] | None = None,
verbose: bool = False,
# resume: bool = False,
enable_checkpointing: bool = False,
Expand Down