pj4533 / yourgoal

Swift implementation of BabyAGI
MIT License
50 stars 8 forks source link

Need to be able to finish a task #5

Closed pj4533 closed 1 year ago

pj4533 commented 1 year ago

Each task just simply spawns more tasks, there is no concept of finishing a task. Hmmmm.

pj4533 commented 1 year ago

AutoGPT seems to have some ideas of how to finish a task. Need to examine this code for ideas to incorporate.

pj4533 commented 1 year ago

I think something like these ai functions is the key: https://github.com/Torantulino/AI-Functions

Doesn't work in all cases, but would a function defined to return true or false, whether it finished a task based on the task name and the result? Then you break the task down if false, and move on if true?

pj4533 commented 1 year ago

The ai function idea is from this: https://www.askmarvin.ai

That project has lots of other good ideas also, study that code as well.