From 03a33dbe750fa68adbf6e6528e050a4a88f09884 Mon Sep 17 00:00:00 2001 From: Sam Holt Date: Tue, 23 Apr 2024 17:03:36 +0100 Subject: [PATCH] Update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11b5d04b..ac2bea04 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ * LLM-Automatic Computer can take a **one line input prompt** and generate an extensive and large output, for example generating an entire complex codebase. * Internally, the LLM-Automatic Computer uses a **prompt-program** which is a series of prompts, each providing a instruction step to execute. Unless explicitly given, the **prompt-program** is self generated (bootstrapped) and executed. Specifically each instruction step of the **prompt-program** is loaded into a new LLM agent to execute, whose context is managed by a control unit and is provided with tools so that it can read and write to a persistent memory, here a file store, which contains the final and intermediate outputs. This enables it to automatically execute general-purpose prompt programs to solve complex tasks, that require extensive cohesive outputs, where the output is unbounded and not constrained by the LLMs underlying context window constraint. -![BlockDiagram](docs/resources/l2mac-block-diagram.png) +![BlockDiagram](docs/public/l2mac-block-diagram.png)

LLM-Automatic Computer (L2MAC) instantiation for coding a large complex codebase for an entire application based on a single user prompt. Here we provide L2MAC with additional tools to check for any syntax errors within the code and run any unit tests if they exist, and call this instantiation Code-L2MAC.

## Get Started