MCPcopy
hub / github.com/Skyvern-AI/skyvern / set

Method set

skyvern/forge/sdk/cache/base.py:49–50  ·  view source on GitHub ↗
(self, key: str, value: Any, ex: Union[int, timedelta, None] = CACHE_EXPIRE_TIME)

Source from the content-addressed store, hash-verified

47class BaseCache(ABC):
48 @abstractmethod
49 async def set(self, key: str, value: Any, ex: Union[int, timedelta, None] = CACHE_EXPIRE_TIME) -> None:
50 pass
51
52 @abstractmethod
53 async def get(self, key: str) -> Any:

Callers 15

run_codeFunction · 0.45
do_POSTMethod · 0.45
set_api_key_overrideFunction · 0.45
reset_api_key_overrideFunction · 0.45
get_skyvernFunction · 0.45
close_skyvernFunction · 0.45
get_current_sessionFunction · 0.45
set_current_sessionFunction · 0.45
scoped_sessionFunction · 0.45
resolve_browserFunction · 0.45
_on_new_pageFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected