File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed
llmstack/processors/providers/promptly Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change 1414 WebBrowserCommandOutput ,
1515 WebBrowserCommandType ,
1616 WebBrowserContent ,
17- WebBrowserResponse ,
1817)
1918from pydantic import BaseModel , Field
2019
@@ -470,15 +469,14 @@ def _execute_anthropic_instruction_in_browser(
470469 ]
471470 )
472471 else :
473- return WebBrowserResponse (
474- content = WebBrowserContent (
475- command_outputs = [
476- WebBrowserCommandOutput (
477- index = 0 ,
478- output = "We do not currently support this action" ,
479- )
480- ],
481- ),
472+ logger .error (f"Invalid instruction: { instruction_input } " )
473+ return WebBrowserContent (
474+ command_outputs = [
475+ WebBrowserCommandOutput (
476+ index = 0 ,
477+ output = "We do not currently support this action" ,
478+ )
479+ ],
482480 )
483481
484482 def _process_anthropic (self ) -> dict :
You can’t perform that action at this time.
0 commit comments