From 58f73bed91d1d5049814872b7e6a89af4675798e Mon Sep 17 00:00:00 2001 From: "ajaysi (aider)" Date: Sun, 6 Oct 2024 14:04:03 +0530 Subject: [PATCH] fix: Allow app to run without API keys, prompting for input instead of stopping. --- alwrity.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/alwrity.py b/alwrity.py index 403362a8..5a1b2785 100644 --- a/alwrity.py +++ b/alwrity.py @@ -217,10 +217,8 @@ def main(): setup_environment_paths() sidebar_configuration() - if not check_api_keys(): - st.stop() - if not check_llm_environs(): - st.stop() + check_api_keys() + check_llm_environs() setup_tabs() modify_prompts_sidebar()