From c07310ea4732290bdfc493f78512a25e6993cf1b Mon Sep 17 00:00:00 2001 From: ArslanSaleem Date: Mon, 9 Dec 2024 17:43:25 +0100 Subject: [PATCH] fix: exception message --- pandasai/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandasai/__init__.py b/pandasai/__init__.py index 60709fbcb..4fb051e12 100644 --- a/pandasai/__init__.py +++ b/pandasai/__init__.py @@ -87,7 +87,7 @@ def load(dataset_path: str, virtualized=False) -> DataFrame: api_url = os.environ.get("PANDASAI_API_URL", None) if not api_url or not api_key: raise PandasAIApiKeyError( - "Set PANDASAI_API_URL and PANDAAI_API_KEY in environment to pull dataset from the remote server" + "Set PANDASAI_API_URL and PANDASAI_API_KEY in environment to pull dataset from the remote server" ) request_session = get_pandaai_session()