Skip to content

Releases: dataiku/kiji-proxy

Kiji Privacy Proxy v1.1.4

30 May 04:19
Immutable release. Only release title and notes can be modified.
ea6ab32

Choose a tag to compare

Kiji Privacy Proxy v1.1.4

Downloads

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

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.1.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-1.1.4-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.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.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.4_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.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

  • fix: drop unsupported macOS floor from Homebrew cask by @hanneshapke in #492
  • fix: broken electron build by @hanneshapke in #493
  • chore: version packages by @github-actions[bot] in #494

Full Changelog: v1.1.3...v1.1.4

Kiji Privacy Proxy v1.1.3

30 May 02:16
Immutable release. Only release title and notes can be modified.
9134f98

Choose a tag to compare

Kiji Privacy Proxy v1.1.3

Downloads

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

macOS Installation

Homebrew (recommended):

brew install --cask dataiku/tap/kiji-privacy-proxy

Or download manually:

  1. Download Kiji-Privacy-Proxy-1.1.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-1.1.3-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.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.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.3_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.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

  • fix: publish Homebrew cask on first release by @hanneshapke in #490
  • chore: version packages by @github-actions[bot] in #491

Full Changelog: v1.1.2...v1.1.3

Kiji Privacy Proxy v1.1.2

30 May 01:33
Immutable release. Only release title and notes can be modified.
d9b16e0

Choose a tag to compare

Kiji Privacy Proxy v1.1.2

Downloads

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

macOS Installation

Quick Start:

  1. Download Kiji-Privacy-Proxy-1.1.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-1.1.2-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.1.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.

Debian / Ubuntu (.deb)

sudo dpkg -i kiji-privacy-proxy_1.1.2_amd64.deb
# The systemd unit is installed but not enabled by default.
# Configure /etc/default or env vars first, then:
sudo systemctl enable --now kiji-privacy-proxy

Files land under /opt/kiji-privacy-proxy/ and a kiji-proxy
wrapper is placed on PATH at /usr/bin/kiji-proxy.

Chrome Extension

Install from zip:

  1. Download kiji-privacy-proxy-extension-1.1.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

New Contributors

Full Changelog: v1.0.5...v1.1.2

Kiji Privacy Proxy v1.0.5

14 May 17:01
Immutable release. Only release title and notes can be modified.
c8ad776

Choose a tag to compare

Kiji Privacy Proxy v1.0.5

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.5.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.5-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.5-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.5.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: v1.0.4...v1.0.5

Kiji Privacy Proxy v1.0.4

14 May 03:34
Immutable release. Only release title and notes can be modified.
a0de9fe

Choose a tag to compare

Kiji Privacy Proxy v1.0.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-1.0.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-1.0.4-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.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-1.0.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: v1.0.3...v1.0.4

Kiji Privacy Proxy v1.0.3

12 May 20:35
Immutable release. Only release title and notes can be modified.
1f2dff0

Choose a tag to compare

Kiji Privacy Proxy v1.0.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-1.0.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-1.0.3-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.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-1.0.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

  • ci: updated the dmg signing by @hanneshapke in #417
  • chore: add changeset for macOS quarantine fix by @Davidnet in #418
  • chore: version packages by @github-actions[bot] in #419
  • fix(ci): force electron-builder to sign on merged release PRs by @Davidnet in #420
  • chore: add changeset for signing build fix by @Davidnet in #421
  • chore: version packages by @github-actions[bot] in #422

Full Changelog: v1.0.1...v1.0.3

Kiji Privacy Proxy v1.0.1

11 May 22:06
Immutable release. Only release title and notes can be modified.
8ca8226

Choose a tag to compare

Pre-release

Kiji Privacy Proxy v1.0.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-1.0.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-1.0.1-linux-amd64.tar.gz
cd kiji-privacy-proxy-1.0.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-1.0.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

New Contributors

  • @GodHad made their first contribution in #396
  • @github-actions[bot] made their first contribution in #416

Full Changelog: v1.0.0...v1.0.1

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