We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While running docker compose run --rm auto-gpt --install-plugin-deps, the following error appears:
docker compose run --rm auto-gpt --install-plugin-deps
Plugin config is invalid, continuing without plugins. Error: Invalid plugin config data type: <class 'list'>
My plugins_config.yaml file content is:
plugins_config.yaml
commercetools: - config: {} # Configs from the plugin README and installation instructions. - enabled: true
When i remove the hyphen from the plugins_config.yaml file, the error does not appear anymore but the plugin is not loaded
The text was updated successfully, but these errors were encountered:
what settings should I use on the plugins_config.yaml file?
AutoGPTSpacePlugin: config: {} enabled: true
or these
plugin_a: config: api_key: my-api-key enabled: false PluginB: config: {} enabled: true
If the latest settings are to be used, is it necessary to add a CHAT_ID for the telegram bot? thanks.
Sorry, something went wrong.
@Annett-2601 , it depends, the 2nd code block is for more than 1 plugin, but uses the same format.
Regarding the CHAT_ID, you may add this on the .env file or here on the config field.
CHAT_ID
.env
config
As i'm new to Auto-GPT, it may help you to reach out on the discord platform: https://discord.gg/autogpt
I have the same problem. And I'm following it on Discord. Give me a sign you solved this problem, thanks.
I get the plugin to be loaded using a different directory structure, more details on discord https://discord.com/channels/1092243196446249134/1161308423716098088/1161757994019717350
No branches or pull requests
While running
docker compose run --rm auto-gpt --install-plugin-deps
, the following error appears:Plugin config is invalid, continuing without plugins. Error: Invalid plugin config data type: <class 'list'>
My
plugins_config.yaml
file content is:When i remove the hyphen from the
plugins_config.yaml
file, the error does not appear anymore but the plugin is not loadedThe text was updated successfully, but these errors were encountered: