anthropic CUA (#2231)

Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
This commit is contained in:
Shuchang Zheng 2025-04-28 09:49:44 +08:00 committed by GitHub
parent 5582998490
commit 0a0228b341
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 378 additions and 45 deletions

View file

@ -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")