Remove setup.sh in favor of skyvern CLI (#4737)

This commit is contained in:
Shuchang Zheng
2026-02-12 20:43:27 -08:00
committed by GitHub
parent 08d3b04d14
commit 155c07f8be
77 changed files with 12358 additions and 10 deletions

View File

@@ -57,6 +57,6 @@ class LLMProviderErrorRetryableTask(LLMProviderError):
class NoProviderEnabledError(BaseLLMError):
def __init__(self) -> None:
super().__init__(
"At least one LLM provider must be enabled. Run setup.sh and follow through the LLM provider setup, or "
"update the .env file (check out .env.example to see the required environment variables)."
"At least one LLM provider must be enabled. Run `skyvern init` and follow through the LLM provider setup, "
"or update the .env file (check out .env.example to see the required environment variables)."
)