--- Create a commands table that contains all the already executed commandes and the simplified version by ChatGPT DROP TABLE IF EXISTS queries; CREATE TABLE queries ( id INTEGER PRIMARY KEY, original_command VARCHAR NOT NULL, simplified_command VARCHAR NOT NULL, response INT NOT NULL ); DROP TABLE IF EXISTS responses: CREATE TABLE responses ( id INTEGER PRIMARY KEY, response VARCHAR NOT NULL );