First Working Prototype
This application is a simple proof of concept demonstrating an agent capable of taking a prompt and generating a patch implementing code satisfying the prompt along with an accompanying unit test.
This commit is contained in:
6
pkg/database/migrations/01_schema.up.sql
Normal file
6
pkg/database/migrations/01_schema.up.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS repos (
|
||||
repo_id UUID PRIMARY KEY,
|
||||
repo_hash TEXT NOT NULL,
|
||||
repo_path TEXT NOT NULL,
|
||||
UNIQUE(repo_hash, repo_path)
|
||||
);
|
||||
Reference in New Issue
Block a user