Skip to content
New issue

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

Not saving any kind of output file. no resulting error messages #4029

Closed
1 task done
cryptskii opened this issue May 8, 2023 · 6 comments
Closed
1 task done

Not saving any kind of output file. no resulting error messages #4029

cryptskii opened this issue May 8, 2023 · 6 comments

Comments

@cryptskii
Copy link

⚠️ Search for existing issues first ⚠️

  • I have searched the existing issues, and there is no existing issue for my problem

Which Operating System are you using?

Docker

Which version of Auto-GPT are you using?

Stable (branch)

GPT-3 or GPT-4?

GPT-3.5

Steps to reproduce 🕹

I am also having a similar issue I'm on a MacBook Pro M1 I've modified the.ENV I've set up execute local commands to true as well as allow, downloads, etc. but it doesn't seem to actually write anything in the designated workspace and when I was using pinecone there's n index produced, but there doesn't end up being any vectors within the index. Mind you other than that things have been working just great the logic is there the bots good at coming up with the next script no problem pulling resources no problem but they're not actually saving anywhere from what I can tell. im not getting any error messages either.

Current behavior 😯

Behaviour is normal in and expected but I'm not getting an output

Expected behavior 🤔

No response

Your prompt 📝

No response

Your Logs 📒

No response

@khongminhtn
Copy link

Have you tried this without EXECUTE_LOCAL_COMMANDS ?

Also pay attention to the NEXT ACTION: COMMAND: on each interaction to see what it is intending to do.

Try this and then update your results on here and we can have a look.

@mousberg
Copy link

mousberg commented May 8, 2023

Same issue here, I prompted 'I want Auto-GPT to: create txt.txt file containing "test".' just to see if it can write a file, it says it has but my auto_gpt_workspace folder is empty.

@mousberg
Copy link

mousberg commented May 8, 2023

This fixed it for me, as you're using docker-compose I assume, update your docker-compose.yml file to:

version: "3.9"
services:
  auto-gpt:
    image: significantgravitas/auto-gpt
    depends_on:
      - redis
    env_file:
      - .env
    environment:
      MEMORY_BACKEND: ${MEMORY_BACKEND:-redis}
      REDIS_HOST: ${REDIS_HOST:-redis}
    profiles: ["exclude-from-up"]
    volumes:
      - ./auto_gpt_workspace:/app/autogpt/auto_gpt_workspace
      - ./data:/app/data
      ## allow auto-gpt to write logs to disk
      - ./logs:/app/logs
      ## uncomment following lines if you have / want to make use of these files
      #- ./azure.yaml:/app/azure.yaml
      #- ./ai_settings.yaml:/app/ai_settings.yaml
  redis:
    image: "redis/redis-stack-server:latest"

@cryptskii
Copy link
Author

Yeah, you assumed right I am using Docker compose and thank you. I'll try that in a moment. I'll let you know if it ends up working for me.

@cryptskii
Copy link
Author

Do you have execute local commands turned on or off? Is it true or false?

@k-boikov
Copy link
Contributor

Fixed with #3927

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants