Experimental extension to run DuckDB as a Copilot Extension helper
Run the following commands to install and start the application locally
npm install
npm run dev
open http://localhost:3000
Follow the
/docsinstructions to register your Copilot Extension
@duckdb-copilot SELECT 1, 2, 3@duckdb-copilot CREATE TABLE cities (
name VARCHAR,
country VARCHAR
);@duckdb-copilot INSERT INTO cities
VALUES ('San Francisco', 'US'), ('Amsterdam','NL'), ('Bologna','IT');@duckdb-copilot SELECT * FROM cities@duckdb-copilot show all entries from cities
@duckdb-copilot show the duckdb version
