Skip to content

Commit 74268ae

Browse files
committed
Use empty defaults for start_url and task for web_browser
1 parent fbf5c53 commit 74268ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llmstack/processors/providers/promptly/web_browser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ class WebBrowserOutput(ApiProcessorSchema):
117117

118118
class WebBrowserInput(ApiProcessorSchema):
119119
start_url: str = Field(
120-
description='URL to visit to start the session')
120+
description='URL to visit to start the session', default='')
121121
task: str = Field(
122-
..., description='Details of the task to perform')
122+
description='Details of the task to perform', default='')
123123

124124

125125
TOOLS = [

0 commit comments

Comments
 (0)