mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 19:50:42 +00:00
11 lines
260 B
Python
11 lines
260 B
Python
"""Skyvern HTTP API client accessor.
|
|
|
|
Workflow tools import from here to get the API client without pulling in
|
|
browser/Playwright dependencies.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from skyvern.cli.core.client import get_skyvern
|
|
|
|
__all__ = ["get_skyvern"]
|