Weeknotes: Plugins for LLM, sqlite-utils and Datasette
5th August 2023
The principle theme for the past few weeks has been plugins.
Llama 2 in LLM via plugins
I added the ability to support models other than the OpenAI ones to my LLM command-line tool last month. The timing on this could not have been better: Llama 2 (the first commercially usable version of Meta’s LLaMA language model) was released on July 18th, and I was able to add support to prompting it via LLM that very morning thanks to the llm-replicate plugin I had released the day before that launch.
(I had heard a tip that a new exciting LLM was about to be released on Replicate, though I didn’t realize it was Llama 2 until after the announcement.)
A few days ago I took that a step further: the new llm-llama-cpp plugin can now be used to run a GGML quantized version of the Llama 2 model directly on your own hardware.
LLM is available in Homebrew core now, so getting Llama 2 working is as simple as:
brew install llm
llm install llm-llama-cpp llama-cpp-python
llm llama-cpp download-model \
https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGML/resolve/main/llama-2-7b-chat.ggmlv3.q8_0.bin \
--alias llama2-chat --alias l2c --llama2-chat
Then:
llm -m l2c 'Tell me a joke about a llama'
I wrote more about this in Run Llama 2 on your own Mac using LLM and Homebrew—including instructions for calling Llama 2 using the LLM Python API as well.
Plugins for sqlite-utils
My sqlite-utils project, similar to LLM, is a combined CLI tool and Python library. Based on requests from the community I adding plugin support to it too.
There are two categories of plugins so far: plugins that add extra commands to the sqlite-utils
CLI tool, and plugins that add extra custom SQL functions that can be executed against SQLite.
There are quite a few plugins listed in the sqlite-utils plugins directory already.
I built sqlite-utils-shell in time for the initial launch, to help demonstrate the new system by adding a sqlite-utils shell
command that opens an interactive shell enabling any SQL functions that have been installed by other plugins.
Alex Garcia suggested I look at litecli by Amjith Ramanujam, which is a much more sophisticated terminal shell for SQLite, incorporating auto-completion against tables and columns.
I used that to build a better alternative to my sqlite-utils-shell
plugin: sqlite-utils-litecli, which lets you run the following command to get a full litecli
shell with all of the custom SQL functions from other plugins:
sqlite-utils litecli mydatabase.db
datasette-auth-tokens and dclient
Meanwhile, in Datasette land... I’ve been investing more time building Datasette Cloud, the SaaS cloud hosted version of Datasette.
The Datasette 1.0 alphas introduced a write API. I wanted a mechanism for Datasette Cloud users to be able to setup automatic imports of data into their instances, taking advantage of that API.
This meant I needed an API key mechanism that allowed tokens to be both created and revoked interactively.
I ended up building that into the existing datasette-auth-tokens
plugin, released in preview in the datasette-auth-tokens 0.4a0 alpha.
I’ve been quietly working on a new CLI utility for interacting with Datasette instances via the API, called dcloud
. I shipped dcloud 0.2 with a new dclient insert
command that can read CSV, TSV or JSON data and write it to an external Datasette instance using that new 1.0 write API.
I’ll have more news to share about Datasette Cloud soon!
Large Language Model talk at North Bay Python
On Sunday I gave the closing talk at North Bay Python, titled Catching up on the weird world of LLMs.
I tried to summarize the last few years of development in the field of LLMs in just 40 minutes. I’m pretty happy with how it turned out! I’ve since published a full annotated transcript of the talk, with slides, additional links and notes—so even if you don’t want to watch the full talk you can still read through a thorough summary of what I covered.
I’ve given a few of my talks this treatment now and I really like it—it’s a great way to unlock as much value as possible from the time I spend putting one of these things together.
Examples of this format:
- Catching up on the weird world of LLMs—from this Sunday.
- Prompt injection explained, with video, slides, and a transcript for a LangChain webinar in May 2023.
- Coping strategies for the serial project hoarder for DjangoCon US 2022.
- How to build, test and publish an open source Python library for PyGotham in November 2021
- Datasette—an ecosystem of tools for working with small data for PyGotham 2020.
- Personal Data Warehouses: Reclaiming Your Data for the GitHub OCTO speaker series in November 2020.
- Redis tutorial at NoSQL Europe—this was the first time I put together annotated slides like this, for a three hour tutorial on Redis presented at NoSQL Europe back in 2010.
This time round I built a small tool to help me assemble the notes and alt attributes for the video—I hope to write more about that soon.
Blog entries these weeks
- Catching up on the weird world of LLMs
- Run Llama 2 on your own Mac using LLM and Homebrew
- sqlite-utils now supports plugins
- Accessing Llama 2 from the command-line with the llm-replicate plugin
Releases these weeks
-
llm-llama-cpp 0.1a0—2023-08-01
LLM plugin for running models using llama.cpp -
datasette-upload-dbs 0.2—2023-08-01
Upload SQLite database files to Datasette -
sqlite-utils-litecli 0.1.1—2023-07-26
Interactive shell for sqlite-utils using litecli -
llm-gpt4all 0.1.1—2023-07-25
Plugin for LLM adding support for the GPT4All collection of models -
dclient 0.2—2023-07-24
A client CLI utility for Datasette instances -
llm 0.6.1—2023-07-24
Access large language models from the command-line -
asgi-replay 0.1a0—2023-07-24
Record and replay ASGI web page loads -
sqlite-utils-shell 0.2—2023-07-24
Interactive shell for sqlite-utils -
sqlite-utils-dateutil 0.1—2023-07-24
Date utility functions for sqlite-utils -
sqlite-migrate 0.1a1—2023-07-23
A simple database migration system for SQLite, based on sqlite-utils -
sqlite-utils 3.34—2023-07-22
Python CLI utility and library for manipulating SQLite databases -
llm-replicate 0.3—2023-07-20
LLM plugin for models hosted on Replicate -
symbex 1.3—2023-07-19
Find the Python code for specified symbols -
datasette-auth-tokens 0.4a0—2023-07-17
Datasette plugin for authenticating access using API tokens
TIL these weeks
- Checking if something is callable or async callable in Python—2023-08-04
- axe-core and shot-scraper for accessibility audits—2023-07-30
- Exploring the Overture Maps places data using DuckDB, sqlite-utils and Datasette—2023-07-27
- Protocols in Python—2023-07-26
- Using pytest-httpx to run intercepted requests through an in-memory Datasette instance—2023-07-25
More recent articles
- Qwen2.5-Coder-32B is an LLM that can code well that runs on my Mac - 12th November 2024
- Visualizing local election results with Datasette, Observable and MapLibre GL - 9th November 2024
- Project: VERDAD - tracking misinformation in radio broadcasts using Gemini 1.5 - 7th November 2024