
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Ask questions of your data with LLM assistance
Install this plugin in the same environment as sqlite-utils.
sqlite-utils install sqlite-utils-ask
Ask questions of a SQLite database file like this:
sqlite-utils ask content.db 'How many repos?'
The tool will use an LLM (gpt-4o-mini
by default) to generate the appropriate SQL query by passing through your question and the database schema, and will then execute the query and return the result.
You can also ask questions directly of CSV, TSV or JSON files. These will be imported into an in-memory SQLite database prior to running the query.
sqlite-utils ask-files data.csv 'How many repos?'
You can pass multiple files and run queries across multiple resulting tables.
sqlite-utils ask-files legislators.csv votes.csv 'How many votes did each legislator cast?'
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd sqlite-utils-ask
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
python -m pytest
To capture new HTTP interactions, run:
PYTEST_OPENAI_API_KEY=your-key python -m pytest --record-mode once
Or use --record-mode all
to re-record all interactions.
FAQs
Ask questions of your data with LLM assistance
We found that sqlite-utils-ask demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.