File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llmstack/processors/providers/promptly Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments