We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91a6b0f commit 7850313Copy full SHA for 7850313
llmstack/processors/providers/promptly/web_browser.py
@@ -505,9 +505,8 @@ def _process_anthropic(self) -> dict:
505
browser_downloads = []
506
session_videos = []
507
508
- credentials_tool_schema = CREDENTIALS_TOOL_SCHEMA["function"]
509
- credentials_tool_schema["input_schema"] = credentials_tool_schema["parameters"]
510
- del credentials_tool_schema["parameters"]
+ credentials_tool_schema = CREDENTIALS_TOOL_SCHEMA["function"].copy()
+ credentials_tool_schema["input_schema"] = credentials_tool_schema.pop("parameters")
511
512
updated_session_data = None
513
0 commit comments