search
HomeTechnology peripheralsAIGitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

Of course, the next generation of AutoGPT is still open source.

Do you still remember the “AutoGPT” project that AI guru Andrej Karpathy vigorously promoted last year? It is an experimental open source application powered by GPT-4 that can autonomously achieve any goal set by the user, demonstrating the development trend of autonomous AI.

In more than a year, the total number of GitHub stars for this project has exceeded 160,000, which shows its continued popularity.

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

GitHub address: https://github.com/Significant-Gravitas/AutoGPT

Yesterday, the project author announced the arrival of the next generation "AutoGPT" on social media X, which is currently a Pre-alpha version. Compared with the previous generation, the next generation "AutoGPT" makes it easier than ever to build, run and share AI agents, while also greatly improving reliability.

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

                                      Source: https://x.com/SigGravitas/status/1812803289739633018

The author shows how to use the next generation "Auto GPT" quickly builds, deploys and uses Reddit marketing agents that automatically Reply to comments and perform other complex tasks. The new system is no longer as unreliable and inefficient as the first version of "AutoGPT".

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

When asked whether this project can build multi-agent driven applications, the author gave a positive answer and stated that this was an important reason for building this project.

Now, you can design a diagram to let multiple expert agents collaborate to solve problems. SubGraphs is also coming soon to help simplify working with complex graphs.

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

The project can also be customized to add nodes, and writing new blocks manually (key feature mentioned below) is very simple. The author found that Claude did an excellent job in this regard and created custom blocks flawlessly.

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

Of course, the two main components of the project (i.e. Server and Builder mentioned below) can run on different machines.

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

However, for the next generation of "AutoGPT", the author admits that it is still in a very early stage, has flaws and is relatively basic, but still hopes to share it with everyone and open source it from the beginning.

GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration

Main components and key features

This project has the following two main components, which are the AutoGPT Server on the backend and the AutoGPT Builder on the frontend. The Server is responsible for creating a composite multi-agent system, using AutoGPT agents and other non-agent components as its primitives.

  • AutoGPT Server (Backend):

  • https://github.com/Significant-Gravitas/AutoGPT/tree/master/rnd/autogpt_server

  • AutoGPT Builder (Frontend):

  • https ://github.com/Significant-Gravitas/AutoGPT/tree/master/rnd/autogpt_builder

The specific steps to set up and run Server and Builder are as follows:

  • Navigate to the AutoGPT GitHub repository;

  • Click the "Code" button and select "Download ZIP";

  • After downloading, unzip the ZIP file to a folder of your choice;

  • Open the unzipped folder and navigate to "rnd ” directory;

  • Enter the “AutoGPT Server” folder;

  • Open a terminal window in the “rnd” directory;

  • Find and open the README file in the AutoGPT Server folder;

  • Copy and paste each command in the README into your terminal (Important: wait for each command to complete before running the next one);

  • If all commands run without errors, enter the last command " poetry run app";

  • See that the server is running in the terminal;

  • Navigate back to the "rnd" folder;

    O Ouvrez le dossier "AutoGPT Builder" ; ouvrez le fichier readme dans ce dossier ; exécutez la commande suivante dans le terminal :
  • R
    npm install
    EE
  • npm run devOnce the front-end is running, click the link to navigate to localhost:3000.
    E

  • Après avoir exécuté le front-end, cliquez sur le lien pour accéder à " LocalHost: 3000 ";

cliquez l'option" build ";
add quelques blocs pour tester les fonctionnalités; Vérifiez la fenêtre de votre terminal. À ce stade, vous devriez voir que le serveur a reçu la demande, la traite et l'a exécutée.
  • Suivez les étapes ci-dessus et vous pourrez configurer et tester avec succès AutoGPT.
  •                               Source vidéo : https://github.com/Significant-Gravitas/AutoGPT/tree/master/rnd/
  • La clé du GPT La fonctionnalité est utiliser des "Blocs" pour construire agents intelligents. Vous pouvez combiner des fonctionnalités hautement modulaires pour créer des comportements personnalisés.
  • Actuellement, le projet a fourni des blocs correspondants pour des opérations telles que la publication sur Reddit, l'envoi de messages Discord et la récupération de résumés Wikipédia. En même temps, il est conçu pour être facile à créer et à utiliser. Voici un exemple de bloc tiré du résumé de Wikipédia :

  • class GetWikipediaSummary(Block):class Input(BlockSchema):topic: strclass Output(BlockSchema):summary: strdef **init**(self):super().__init__(id="h5e7f8g9-1b2c-3d4e-5f6g-7h8i9j0k1l2m",input_schema=GetWikipediaSummary.Input,output_schema=GetWikipediaSummary.Output,test_input={"topic": "Artificial Intelligence"},test_output={"summary": "Artificial intelligence (AI) is intelligence demonstrated by machines..."},)def run(self, input_data: Input) -> BlockOutput:response = requests.get(f"https://en.wikipedia.org/api/rest_v1/page/summary/{input_data.topic}")summary_data = response.json()        yield "summary", summary_data['extract']
  • L'auteur a déclaré que ce n'est que le début et que d'autres blocs seront ajoutés à l'avenir, ainsi que l'amélioration de l'interface utilisateur, améliorant considérablement l'expérience globale. et la fonctionnalité.

The above is the detailed content of GitHub stars exceed 160,000, and the popular advanced version of AutoGPT is here: customized nodes, multi-agent collaboration. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Gemma Scope: Google's Microscope for Peering into AI's Thought ProcessGemma Scope: Google's Microscope for Peering into AI's Thought ProcessApr 17, 2025 am 11:55 AM

Exploring the Inner Workings of Language Models with Gemma Scope Understanding the complexities of AI language models is a significant challenge. Google's release of Gemma Scope, a comprehensive toolkit, offers researchers a powerful way to delve in

Who Is a Business Intelligence Analyst and How To Become One?Who Is a Business Intelligence Analyst and How To Become One?Apr 17, 2025 am 11:44 AM

Unlocking Business Success: A Guide to Becoming a Business Intelligence Analyst Imagine transforming raw data into actionable insights that drive organizational growth. This is the power of a Business Intelligence (BI) Analyst – a crucial role in gu

How to Add a Column in SQL? - Analytics VidhyaHow to Add a Column in SQL? - Analytics VidhyaApr 17, 2025 am 11:43 AM

SQL's ALTER TABLE Statement: Dynamically Adding Columns to Your Database In data management, SQL's adaptability is crucial. Need to adjust your database structure on the fly? The ALTER TABLE statement is your solution. This guide details adding colu

Business Analyst vs. Data AnalystBusiness Analyst vs. Data AnalystApr 17, 2025 am 11:38 AM

Introduction Imagine a bustling office where two professionals collaborate on a critical project. The business analyst focuses on the company's objectives, identifying areas for improvement, and ensuring strategic alignment with market trends. Simu

What are COUNT and COUNTA in Excel? - Analytics VidhyaWhat are COUNT and COUNTA in Excel? - Analytics VidhyaApr 17, 2025 am 11:34 AM

Excel data counting and analysis: detailed explanation of COUNT and COUNTA functions Accurate data counting and analysis are critical in Excel, especially when working with large data sets. Excel provides a variety of functions to achieve this, with the COUNT and COUNTA functions being key tools for counting the number of cells under different conditions. Although both functions are used to count cells, their design targets are targeted at different data types. Let's dig into the specific details of COUNT and COUNTA functions, highlight their unique features and differences, and learn how to apply them in data analysis. Overview of key points Understand COUNT and COU

Chrome is Here With AI: Experiencing Something New Everyday!!Chrome is Here With AI: Experiencing Something New Everyday!!Apr 17, 2025 am 11:29 AM

Google Chrome's AI Revolution: A Personalized and Efficient Browsing Experience Artificial Intelligence (AI) is rapidly transforming our daily lives, and Google Chrome is leading the charge in the web browsing arena. This article explores the exciti

AI's Human Side: Wellbeing And The Quadruple Bottom LineAI's Human Side: Wellbeing And The Quadruple Bottom LineApr 17, 2025 am 11:28 AM

Reimagining Impact: The Quadruple Bottom Line For too long, the conversation has been dominated by a narrow view of AI’s impact, primarily focused on the bottom line of profit. However, a more holistic approach recognizes the interconnectedness of bu

5 Game-Changing Quantum Computing Use Cases You Should Know About5 Game-Changing Quantum Computing Use Cases You Should Know AboutApr 17, 2025 am 11:24 AM

Things are moving steadily towards that point. The investment pouring into quantum service providers and startups shows that industry understands its significance. And a growing number of real-world use cases are emerging to demonstrate its value out

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools