mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-15 09:49:46 +00:00
anthropic CUA (#2231)
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
This commit is contained in:
parent
5582998490
commit
0a0228b341
18 changed files with 378 additions and 45 deletions
|
@ -672,3 +672,8 @@ class SkyvernContextWindowExceededError(SkyvernException):
|
|||
def __init__(self) -> None:
|
||||
message = "Context window exceeded. Please contact support@skyvern.com for help."
|
||||
super().__init__(message)
|
||||
|
||||
|
||||
class LLMCallerNotFoundError(SkyvernException):
|
||||
def __init__(self, uid: str) -> None:
|
||||
super().__init__(f"LLM caller for {uid} is not found")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue