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"] }) ```