ICLR2024
L2MAC: Large Language Model Automatic Computer for Extensive Code Generation
Samuel Holt, Max Ruiz Luyten, Mihaela van der Schaar
被引用 29 次
摘要
Transformer-based large language models (LLMs) are constrained by the fixed context window of the underlying transformer architecture, hindering their ability to produce long and coherent outputs. Memory-augmented LLMs are a promising solution, but current approaches cannot handle long output generation tasks since they (1) only focus on reading memory and reduce its evolution to the concatenation of new memories or (2) use very specialized memories that cannot adapt to other domains. This paper presents L2MAC 1 , the first practical LLM-based general-purpose stored-program automatic computer (von Neumann architecture) framework, an LLM-based multi-agent system, for long and consistent output generation. Its memory has two components: the instruction registry, which is populated with a prompt program to solve the user-given task, and a file store, which will contain the final and intermediate outputs. Each instruction in turn is executed by a separate LLM agent, whose context is managed by a control unit capable of precise memory reading and writing to ensure effective interaction with the entire file store. These components enable L2MAC to generate extensive outputs, bypassing the constraints of the finite context window while producing outputs that fulfill a complex user-specified task. We empirically demonstrate that L2MAC achieves state-of-the-art performance in generating large codebases for system design tasks, significantly outperforming other coding methods in implementing the detailed user-specified task; we show that L2MAC works for general-purpose extensive text-based tasks, such as writing an entire book; and we provide valuable insights into L2MAC's performance improvement over existing methods. Published as a conference paper at ICLR 2024 app.py from flask import Flask, request, render_template from user import User from mock_db import MockDB from contact import Contact from message import Message from group_chat import GroupChat app = Flask(name) db = MockDB() @app.route('/') def home(): return render_template('home.html'), 200 @app.route('/register', methods=['POST']) def register(): data = request.get_json() user = User(data['email'], data['password']) contact = Contact(data['email']) db.add(user.email, user) db.add(contact.email, contact) return render_template('register.html', message='User registered successfully'), 200 @app.route('/login', methods=['POST']) def login(): data = request.get_json() user = db.retrieve(data['email']) if user and user.password == data['password']: user.set_online_status(True) return render_template('login.html', message='Login successful'), 200 else: return render_template('login.html', message='Invalid email or password'), 401 @app.route('/logout', methods=['POST']) def logout(): data = request.get_json() user = db.retrieve(data['email']) if user and user.password == data['password']: user.set_online_status(False) return 'Logout successful', 200 else: return 'Invalid email or password', 401 @app.route('/send_message', methods=['POST']) def send_message(): data = request.get_json() sender = db.retrieve(data['sender']) receiver = db.retrieve(data['receiver']) if sender and receiver and sender.password == data['password']: message = Message(sender.email, receiver.email, data['content']) if receiver.get_online_status(): receiver.receive_message(message.send_message()) else: receiver.add_to_message_queue(message.send_message()) return 'Message sent', 200 else: return 'Invalid email or password', 401 if name == 'main': app.run(debug=True) contact.py class Contact: def init(self, email): self.email = email self.blocked_contacts = set() self.groups = def block_contact(self, contact_email): self.blocked_contacts.add(contact_email) 1. Setup structure 2. Create registration Contributions: 1 ⃝ We introduce the L2MAC framework, the first practical LLM-based generalpurpose stored-program automatic computer (von Neumann architecture) framework, an LLM-based multi-agent system, for long output generation tasks. 2 ⃝ We provide a practical implementation of this framework for code generation tasks called Code-L2MAC. This uses a Control Unit to control the input and output of the LLM and the use of entire memory file store read/write tools and highlights Published as a conference paper at ICLR 2024 Invoke Tool? Called Step Completed? 1. Summarize step output to Mrs and clear Ct. 2. Load next I(k)aa, and start new Ct=I(k),Mrs Append cycle message Mc Would exceed context? 1. Unwind oldest messages M, till 2. Summarize progress to Mrs and clear Ct. 3. Restart same I(k), with Ct=I(k),Mrs