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 7850313 commit b8aa43aCopy full SHA for b8aa43a
llmstack/processors/providers/promptly/web_browser.py
@@ -1,6 +1,7 @@
1
import base64
2
import logging
3
import uuid
4
+from copy import deepcopy
5
from typing import List, Literal, Optional, Union
6
from urllib.parse import urlparse
7
@@ -505,7 +506,7 @@ def _process_anthropic(self) -> dict:
505
506
browser_downloads = []
507
session_videos = []
508
- credentials_tool_schema = CREDENTIALS_TOOL_SCHEMA["function"].copy()
509
+ credentials_tool_schema = deepcopy(CREDENTIALS_TOOL_SCHEMA["function"])
510
credentials_tool_schema["input_schema"] = credentials_tool_schema.pop("parameters")
511
512
updated_session_data = None
0 commit comments