GitHub - Florents-Tselai/tsellm: Interactive SQLite shell with LLM support
tsellm
Interactive SQLite shell with LLM support
Usage |
Installation |
How
tsellm is an interactive SQLite shell with LLM Support.
Available as pip install tsellm.
Usage
Let's create a simple SQLite database with some data.
sqlite3 prompts.db <<EOF
CREATE TABLE [prompts] (
[prompt] TEXT
);
INSERT INTO prompts VALUES('hello world!');
INSERT INTO prompts VALUES('how are you?');
INSERT INTO prompts VALUES('is this real life?');
INSERT INTO prompts VALUES('1+1=?');
EOF
CLI
You can use any of the ...
Read more at github.com