AI Report #4: AutoGPT And Open-source lags behind Part 2
11–20 of 37 posts
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#12Has anyone actually done anything of use with autogpt? I tied it for 4 tasks and it would inevitably get stuck on each and produce absolutely nothing of value. These were fairly simple like research popular topics and write articles on them etc. It would do things like Google something, the result wasn’t relevant , try again , got an error from one of the pages and then seemingly started to do something completely in…
It was my hypothesis that the variety of trash returned by things like serpapi need to be massaged into something consistent and potentially run through a result retrieval and fine tuning stage to be useful to a high level agent like autogpt, but didn't make it far enough to have anything working to show.
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#13Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#14Earlier quoted context omitted.
Were you using it with gpt3 or 4? Personally, I can’t get gpt4 api access despite being a PI at a well known research institution with a project that would be great publicity for OpenAI. My theory is that people are running it mostly with 3 and then saying it’s useless. It definitely is useless with 3.
Are you an OpenAI user who has a valid payment method attached to your account? I've notice they approve GPT-4 as long as you have a valid payment method and a reasonable justification, which in my case one liner.
Anecdotally (and unsurprisingly), they seem to be prioritising those with "value-add" use cases in a variety of industries over individuals just wanting to play.
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#15Has anyone actually done anything of use with autogpt? I tied it for 4 tasks and it would inevitably get stuck on each and produce absolutely nothing of value. These were fairly simple like research popular topics and write articles on them etc. It would do things like Google something, the result wasn’t relevant , try again , got an error from one of the pages and then seemingly started to do something completely in…
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#16Has anyone actually done anything of use with autogpt? I tied it for 4 tasks and it would inevitably get stuck on each and produce absolutely nothing of value. These were fairly simple like research popular topics and write articles on them etc. It would do things like Google something, the result wasn’t relevant , try again , got an error from one of the pages and then seemingly started to do something completely in…
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#17Has anyone actually done anything of use with autogpt? I tied it for 4 tasks and it would inevitably get stuck on each and produce absolutely nothing of value. These were fairly simple like research popular topics and write articles on them etc. It would do things like Google something, the result wasn’t relevant , try again , got an error from one of the pages and then seemingly started to do something completely in…
Can you help me understand autogpt? Is it just a recursive gpt where an initial prompt is given and has the ability of the output to be used to pipe to other gpt prompts. Am I missing something? I tried doing more complex tasks using GPT4 and was initially optimistic about plugins but they have all been very disappointing. For instance, a dream for me would be something like: "Find some rental property opportunities…
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#18Has anyone actually done anything of use with autogpt? I tied it for 4 tasks and it would inevitably get stuck on each and produce absolutely nothing of value. These were fairly simple like research popular topics and write articles on them etc. It would do things like Google something, the result wasn’t relevant , try again , got an error from one of the pages and then seemingly started to do something completely in…
here's the video: https://www.loom.com/share/5e83475be2464778950f7df7e209ac2d
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#19It's really turtles all the way down.
Re: AI Report #4: AutoGPT And Open-source lags behind Part 2
#20Has anyone actually done anything of use with autogpt? I tied it for 4 tasks and it would inevitably get stuck on each and produce absolutely nothing of value. These were fairly simple like research popular topics and write articles on them etc. It would do things like Google something, the result wasn’t relevant , try again , got an error from one of the pages and then seemingly started to do something completely in…
Right now we have:
Step 1: Human reasoning, tool use, input.
Step 2: LLM output.
Step 3: Human reasoning, tool use, input.
Step 4: LLM output.
&etc.
The observation that the input and output are both just text makes it possible to make "agents". But the "agent" movement trying to totally close the whole loop right away is way too early.
It's fine to lay the groundwork though, and the frameworks for it, like AutoGPT, can be used to just do a couple extra steps rather than close the whole loop.
Plugins and browsing can be seen as merging some of step 2 and 3. But then you still need the &etc iteration with the human closely in the loop.
Chain of thought prompting techniques are similarly an attempt to merge a little bit of the human's process of vetting the output by trying to get better output in individual iterations. Sometimes I make the LLM output multiple options and pick the best one with its reasoning; this is really just compressing multiple runs of the LLM and having it pick one, rather than me retrying if I get a bad output.
Anyway I think this is the right way to look at it; these are good tools for trying to compress iterations of human-in-the-loop. For some things maybe we'll eventually remove the human, but we shouldn't expect it right now. The twitter demonstrations of "it did the whole thing" are a trick; good for influences, but not realistic right now.