Skip to content

Commit fbf5c53

Browse files
committed
Update defaults
1 parent 702a141 commit fbf5c53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llmstack/processors/providers/promptly/web_browser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ class WebBrowserConfiguration(ApiProcessorSchema):
7171
connection_id: Optional[str] = Field(
7272
description='Connection to use', widget='connection', advanced_parameter=False)
7373
model: Model = Field(
74-
description='Backing model to use', default=Model.GPT_4_LATEST, advanced_parameter=False)
74+
description='Backing model to use', default=Model.GPT_4_V_LATEST, advanced_parameter=False)
7575
stream_video: bool = Field(
76-
description='Stream video of the browser', default=False)
76+
description='Stream video of the browser', default=True)
7777
stream_text: bool = Field(
7878
description='Stream output text from the browser', default=False)
7979
timeout: int = Field(
8080
description='Timeout in seconds', default=10, ge=1, le=100)
8181
max_steps: int = Field(
82-
description='Maximum number of browsing steps', default=10, ge=1, le=20)
82+
description='Maximum number of browsing steps', default=8, ge=1, le=20)
8383
system_message: str = Field(
8484
description='System message to use', default=DEFAULT_SYSTEM_MESSAGE, widget='textarea')
8585

0 commit comments

Comments
 (0)