We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is the feature I built llm for. I want to log my interactions to a SQLite database.
llm
The text was updated successfully, but these errors were encountered:
I'm going to have this work by saying "if ``/.llm/log.db` exists, log messages to that database".
Later on I may come up with more advanced ways of configuring this.
It will default to logging - provided that DB exists already - but there will be a command line option for "don't log".
A llm init-db command will create the database for you if it does not exist yet.
llm init-db
Sorry, something went wrong.
New docs:
Logging to SQLite If a SQLite database file exists in ~/.llm/log.db then the tool will log all prompts and responses to it. You can create that file by running the init-db command: llm init-db Now any prompts you run will be logged to that database. To avoid logging a prompt, pass --no-log or -n to the command: llm 'Ten names for cheesecakes' -n
If a SQLite database file exists in ~/.llm/log.db then the tool will log all prompts and responses to it.
~/.llm/log.db
You can create that file by running the init-db command:
init-db
Now any prompts you run will be logged to that database.
To avoid logging a prompt, pass --no-log or -n to the command:
--no-log
-n
llm 'Ten names for cheesecakes' -n
1a840cd
Release 0.2, refs #2
05e5d5f
No branches or pull requests
This is the feature I built
llm
for. I want to log my interactions to a SQLite database.The text was updated successfully, but these errors were encountered: