mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-29 12:10:28 +00:00
Some checks are pending
Run tests and pre-commit / test (push) Waiting to run
Run tests and pre-commit / fe-lint-build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Build Skyvern SDK and publish to PyPI / check-version-change (push) Waiting to run
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
Sync to skyvern-cloud / sync (push) Waiting to run
18 lines
396 B
Python
18 lines
396 B
Python
from dotenv import load_dotenv
|
|
from pydantic_settings import BaseSettings
|
|
|
|
from skyvern.schemas.runs import RunEngine
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
api_key: str = ""
|
|
base_url: str = "https://api.skyvern.com"
|
|
engine: RunEngine = RunEngine.skyvern_v2
|
|
run_task_timeout_seconds: int = 60 * 60
|
|
|
|
class Config:
|
|
env_prefix = "SKYVERN_"
|
|
|
|
|
|
load_dotenv()
|
|
settings = Settings()
|