aboutsummaryrefslogtreecommitdiff
path: root/docs/content/AutoGPT/plugins.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/AutoGPT/plugins.md')
-rw-r--r--docs/content/AutoGPT/plugins.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/content/AutoGPT/plugins.md b/docs/content/AutoGPT/plugins.md
new file mode 100644
index 000000000..4733a8b3d
--- /dev/null
+++ b/docs/content/AutoGPT/plugins.md
@@ -0,0 +1,20 @@
+## Plugins
+
+⚠️💀 **WARNING** 💀⚠️: Review the code of any plugin you use thoroughly, as plugins can execute any Python code, potentially leading to malicious activities, such as stealing your API keys.
+
+To configure plugins, you can create or edit the `plugins_config.yaml` file in the root directory of AutoGPT. This file allows you to enable or disable plugins as desired. For specific configuration instructions, please refer to the documentation provided for each plugin. The file should be formatted in YAML. Here is an example for your reference:
+
+```yaml
+plugin_a:
+ config:
+ api_key: my-api-key
+ enabled: false
+plugin_b:
+ config: {}
+ enabled: true
+```
+
+See our [Plugins Repo](https://github.com/Significant-Gravitas/Auto-GPT-Plugins) for more info on how to install all the amazing plugins the community has built!
+
+Alternatively, developers can use the [AutoGPT Plugin Template](https://github.com/Significant-Gravitas/Auto-GPT-Plugin-Template) as a starting point for creating your own plugins.
+