Improve quickstart cli (#4205)

This commit is contained in:
Stanislav Novosad
2025-12-04 21:14:48 -07:00
committed by GitHub
parent 43e89d2991
commit 92280d5890
4 changed files with 21 additions and 9 deletions

View File

@@ -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: