Skip to content

Releases: dataiku/kiji-proxy

Kiji Privacy Proxy v1.0.0

28 Apr 02:03
Immutable release. Only release title and notes can be modified.
b7ddd1c

Choose a tag to compare

Kiji Privacy Proxy v1.0.0

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-1.0.0.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-1.0.0-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.0-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.0.0.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.6.1...v1.0.0

Kiji Privacy Proxy v0.6.1

27 Apr 03:54
Immutable release. Only release title and notes can be modified.
0360e56

Choose a tag to compare

Kiji Privacy Proxy v0.6.1

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.6.1.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.6.1-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.6.1-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-0.6.1.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.6.0...v0.6.1

Kiji Privacy Proxy v0.5.4

24 Apr 22:47
Immutable release. Only release title and notes can be modified.
94ee24e

Choose a tag to compare

Kiji Privacy Proxy v0.5.4

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.5.4.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.5.4-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.5.4-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-0.5.4.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.5.3...v0.5.4

Kiji Privacy Proxy v0.5.3

24 Apr 20:46
Immutable release. Only release title and notes can be modified.
7d003af

Choose a tag to compare

Kiji Privacy Proxy v0.5.3

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.5.3.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.5.3-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.5.3-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-0.5.3.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.5.2...v0.5.3

Kiji Privacy Proxy v0.5.2

24 Apr 19:20
Immutable release. Only release title and notes can be modified.
d44bab2

Choose a tag to compare

Kiji Privacy Proxy v0.5.2

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.5.2.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.5.2-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.5.2-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-0.5.2.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.5.1...v0.5.2

Kiji Privacy Proxy v0.5.1

22 Apr 08:43
Immutable release. Only release title and notes can be modified.
0503dae

Choose a tag to compare

Kiji Privacy Proxy v0.5.1

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.5.1.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.5.1-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.5.1-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-pii-guard-0.5.1.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

  • deps(deps-dev): bump postcss from 8.5.6 to 8.5.10 by @dependabot[bot] in #330
  • deps(deps-dev): bump electron from 41.2.0 to 41.2.1 by @dependabot[bot] in #333
  • ci(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 in the github-actions group by @dependabot[bot] in #332
  • deps(deps): bump modernc.org/sqlite from 1.48.2 to 1.49.1 in the go-dependencies group by @dependabot[bot] in #329
  • deps(deps-dev): bump webpack-cli from 6.0.1 to 7.0.2 by @dependabot[bot] in #331
  • chore: model/quantized/spm.model: convert to Git LFS by @hanneshapke in #336
  • deps(deps-dev): bump eslint-plugin-react-hooks from 7.0.1 to 7.1.1 by @dependabot[bot] in #334
  • fix(ci): prevent electron-builder auto-publish on tag builds by @hanneshapke in #337
  • chore: 0.5.1 release by @hanneshapke in #339

Full Changelog: v0.5.0...v0.5.1

Kiji Privacy Proxy v0.4.11

10 Apr 18:16
Immutable release. Only release title and notes can be modified.
dd2a40b

Choose a tag to compare

Kiji Privacy Proxy v0.4.11

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.4.11.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.4.11-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.4.11-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-pii-guard-0.4.11.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.4.10...v0.4.11

Kiji Privacy Proxy v0.4.11

14 Apr 08:02
Immutable release. Only release title and notes can be modified.
dd2a40b

Choose a tag to compare

Kiji Privacy Proxy v0.4.11

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.4.11.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.4.11-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.4.11-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-pii-guard-0.4.11.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Read more

Kiji Privacy Proxy v0.4.9

23 Feb 12:10
Immutable release. Only release title and notes can be modified.
b683088

Choose a tag to compare

Kiji Privacy Proxy v0.4.9

Downloads

  • macOS: DMG installer (Apple Silicon and Intel) - Desktop app with UI
  • Linux: Standalone binary archive (amd64) - API server only (no UI)
  • Chrome Extension: Browser extension for PII detection in web forms

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-0.4.9.dmg
  2. Open the DMG and drag to Applications
  3. Launch "Kiji Privacy Proxy"

HTTPS Support - Install CA Certificate:

For HTTPS interception to work, you must trust the proxy's CA certificate:

# System-wide trust (recommended)
sudo security add-trusted-cert \
  -d \
  -r trustRoot \
  -k /Library/Keychains/System.keychain \
  ~/.kiji-proxy/certs/ca.crt

Or use Keychain Access:

  1. Open Keychain Access app
  2. File → Import Items → ~/.kiji-proxy/certs/ca.crt
  3. Double-click "Kiji Privacy Proxy CA" certificate
  4. Expand Trust → Set to Always Trust

Linux Installation

Note: Linux build is API-only (no desktop UI). Access via HTTP endpoints.

Quick Start:

# Extract
tar -xzf kiji-privacy-proxy-0.4.9-linux-amd64.tar.gz
cd kiji-privacy-proxy-0.4.9-linux-amd64

# Run
./run.sh

HTTPS Support - Install CA Certificate:

# Ubuntu/Debian
sudo cp ~/.kiji-proxy/certs/ca.crt /usr/local/share/ca-certificates/kiji-proxy-ca.crt
sudo update-ca-certificates

# RHEL/CentOS/Fedora
sudo cp ~/.kiji-proxy/certs/ca.crt /etc/pki/ca-trust/source/anchors/kiji-proxy-ca.crt
sudo update-ca-trust

Configuration:

# Set API key
export OPENAI_API_KEY="your-key-here"

# Check health
curl http://localhost:8080/health

# Test proxy
curl -x http://localhost:8080 https://api.openai.com/v1/models

See included README.txt for systemd service setup and advanced configuration.

Chrome Extension

Install from zip:

  1. Download kiji-pii-guard-0.4.9.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

Documentation

What's New

See the changelog below for details.

What's Changed

Full Changelog: v0.4.8...v0.4.9

Kiji Privacy Proxy v0.4.8

23 Feb 11:02
Immutable release. Only release title and notes can be modified.
36f2dd5

Choose a tag to compare

Chrome Extension

  • Chrome Extension: kiji-pii-guard-0.4.8.zip

Install from zip:

  1. Download kiji-pii-guard-0.4.8.zip
  2. Unzip to a folder
  3. Open chrome://extensions/
  4. Enable Developer mode
  5. Click Load unpacked and select the unzipped folder

What's Changed

Full Changelog: v0.4.7...v0.4.8