babyagi icon indicating copy to clipboard operation
babyagi copied to clipboard

How to get out put of end results?

Open A1Marky opened this issue 1 year ago • 4 comments

I wasn't sure where to post about this but I've been running BabyAGI a good amount of time now but where would I see any kind of output on the results. It seems like it's doing a ton of stuff but how do I get the output?

A1Marky avatar Apr 12 '23 08:04 A1Marky

I only used BabyAGI for like 5min, but one way is to redirect the output to a file:

python babyagi.py > output

This way the script will not print anything to the console and will instead print all the information to a file named output. Important: it might take some time to print the output to the file, so don't worry if you see the file empty while the script is running. Give it some time (or stop the script)

There's probably a smarter way to achieve this, though.

antoniocascais avatar Apr 12 '23 09:04 antoniocascais

I only used BabyAGI for like 5min, but one way is to redirect the output to a file:

python babyagi.py > output

This way the script will not print anything to the console and will instead print all the information to a file named output. Important: it might take some time to print the output to the file, so don't worry if you see the file empty while the script is running. Give it some time (or stop the script)

There's probably a smarter way to achieve this, though.

Ok I will give it a try. Thanks. I ran it for like 2 hours last night and didn't get an output of any kind so that hurt. Hopefully I can figure it out for the next try.

A1Marky avatar Apr 12 '23 21:04 A1Marky

I use this on linux. python babyagi.py 2>&1 | tee output.txt >/dev/tty

stepsal avatar Apr 13 '23 06:04 stepsal

With this integration you'll be able to explore all outputs with a nice UI: https://github.com/yoheinakajima/babyagi/issues/158

roubkar avatar Apr 13 '23 20:04 roubkar