Skip to content

0.1.5

Latest

Choose a tag to compare

@github-actions github-actions released this 23 Dec 09:55

Packages

Node: npm install @sqliteai/sqlite-agent
Android: ai.sqlite:agent:0.1.5
Swift: Installation Guide

Installation

macOS:

wget https://github.com/sqliteai/sqlite-agent/releases/download/0.1.5/agent-macos-0.1.5.tar.gz
tar -xzf agent-macos-0.1.5.tar.gz
sqlite3 :memory: ".load ./agent.dylib" "SELECT agent_version();"

Linux:

wget https://github.com/sqliteai/sqlite-agent/releases/download/0.1.5/agent-linux-x86_64-0.1.5.tar.gz
tar -xzf agent-linux-x86_64-0.1.5.tar.gz
sqlite3 :memory: ".load ./agent.so" "SELECT agent_version();"

Windows:

Invoke-WebRequest -Uri "https://github.com/sqliteai/sqlite-agent/releases/download/0.1.5/agent-windows-x86_64-0.1.5.zip" -OutFile "agent.zip"
Expand-Archive -Path "agent.zip" -DestinationPath "."
sqlite3 :memory: ".load ./agent.dll" "SELECT agent_version();"

Full Changelog: 0.1.4...0.1.5