From 2e1781229a709f1c9d510002996513eba07d97ae Mon Sep 17 00:00:00 2001 From: pesmeriz <97170206+pesmeriz@users.noreply.github.com> Date: Wed, 16 Oct 2024 09:31:25 +0100 Subject: [PATCH] docs: update custom-whitelisted-dependencies.mdx (#1366) The module example is too abstract. Giving an example of a known library would be beneficial for users to understand --- docs/custom-whitelisted-dependencies.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/custom-whitelisted-dependencies.mdx b/docs/custom-whitelisted-dependencies.mdx index 862abcbc1..29d9e9b97 100644 --- a/docs/custom-whitelisted-dependencies.mdx +++ b/docs/custom-whitelisted-dependencies.mdx @@ -7,7 +7,7 @@ By default, PandasAI only allows to run code that uses some whitelisted modules. ```python from pandasai import SmartDataframe df = SmartDataframe("data.csv", config={ - "custom_whitelisted_dependencies": ["any_module"] + "custom_whitelisted_dependencies": ["seaborn"] }) ```