Where can I study more in dept how Auto-GPT works? #180
-
Hi guys, I am utterly obsessed with auto-GPT. I have come across some papers about GPT-based autonomous agents (https://arxiv.org/abs/2303.11366), but I'd like to know more! If you guys have some suggestions, they would be greatly appreciated. Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Honestly, I've found the code simple to read. Try starting from the main.py script and see the different functions that are called. Follow any of them that you want to see how they work. Unfortunately the concept of agents is still quite new and there aren't many good explanations even though the concept is simple. I'd recommend watching some videos on LangChain Agents and how those work. But I don't recommend using LangChain for anything complex. LangChain is a very hard to modify library because of the levels of abstraction. |
Beta Was this translation helpful? Give feedback.
-
Here's a project idea, @gigagiova: Point Auto-GPT at this repo and ask it to start self documenting. See how far it can get. |
Beta Was this translation helpful? Give feedback.
Honestly, I've found the code simple to read. Try starting from the main.py script and see the different functions that are called. Follow any of them that you want to see how they work.
Unfortunately the concept of agents is still quite new and there aren't many good explanations even though the concept is simple. I'd recommend watching some videos on LangChain Agents and how those work. But I don't recommend using LangChain for anything complex. LangChain is a very hard to modify library because of the levels of abstraction.