Description
Hey there,
tried all the setup options with latest AutoGPT stable. Following the docker method https://docs.agpt.co/autogpt/setups/docker-setup/#set-up-with-docker.
- My folder structure looks like this:
- My
docker-compose.yaml
:
version: "3.9" services: auto-gpt: image: significantgravitas/auto-gpt env_file: - .env profiles: ["exclude-from-up"] volumes: - ./auto_gpt_workspace:/app/auto_gpt_workspace - ./data:/app/data - ./logs:/app/logs - ./plugins:/app/plugins - type: bind source: ./ai_settings.yaml target: /app/ai_settings.yaml - type: bind source: ./plugins_config.yaml target: /app/plugins_config.yaml
- I run as suggested with
docker compose run --rm auto-gpt
.
Problem
I get always in the loop triggering a web_search
(see screenshot):
It's curious that when I disable the plugin in plugins_config.yaml
, it gives a warn about that. Therefore I assume that it's activated correctly otherwise.
Note: when I use postman to query the metaAPI
I get the proper response.
Any help would be appreciated.