mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-29 20:20:22 +00:00
Improve quickstart cli (#4205)
This commit is contained in:
parent
43e89d2991
commit
92280d5890
4 changed files with 21 additions and 9 deletions
|
|
@ -1,3 +1,5 @@
|
|||
import os
|
||||
|
||||
from dotenv import load_dotenv, set_key
|
||||
from rich.panel import Panel
|
||||
from rich.prompt import Confirm, Prompt
|
||||
|
|
@ -51,6 +53,7 @@ def update_or_add_env_var(key: str, value: str) -> None:
|
|||
|
||||
load_dotenv(env_path)
|
||||
set_key(env_path, key, value)
|
||||
os.environ[key] = value
|
||||
|
||||
|
||||
def setup_llm_providers() -> None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue