Skip to content

Getting Started

Welcome to Pauhu! This guide will help you get up and running with enterprise-grade translation and AI services in minutes.

What is Pauhu?

Pauhu is an enterprise AI platform for translation, compliance, and document intelligence. Established in 1989, we've evolved from translation memory to neural machine translation to the most comprehensive AI platform available today.

  • Quick Start


    Get your first translation in under 5 minutes.

    Quick Start

  • Installation


    Install the Pauhu CLI, SDKs, or access the web interface.

    Installation

  • First Translation


    Translate your first document with step-by-step instructions.

    First Translation

  • Configuration


    Configure API keys, deployment modes, and advanced settings.

    Configuration

Core Concepts

Before diving in, understand these fundamental Pauhu concepts:

Same Platform Everywhere

Pauhu follows a deployment-mode pricing model, not a feature-based one. This means:

  • Every tier gets the same features: encryption, all models, offline capability
  • Pricing reflects WHERE you deploy: our cloud, your cloud, or your servers
  • No artificial limitations: same 2,100+ languages at every price point
Tier Price/User/Year Deployment Who Manages
Pauhu® €250 Pauhu Cloud (shared) Pauhu
Pro €1,250 Pauhu Cloud (dedicated) Pauhu
Max €2,500 Your Cloudflare Account You
Ops €4,500 Your Servers (air-gapped) You

Client-Side Encryption

All encryption happens in your browser or application:

  1. Your browser generates encryption keys (Ed25519 + AES-256-GCM)
  2. Keys are stored in your browser's IndexedDB — never sent to servers
  3. Data is encrypted before transmission
  4. Pauhu servers process encrypted data — we cannot read your content
  5. Decryption happens only in your browser

True Zero-Knowledge

Unlike competitors who claim "encryption at rest," Pauhu implements true client-side encrypted architecture. Your keys never leave your device.

Offline-First Architecture

Pauhu is designed to work offline:

  • 695 GB of ONNX models can run entirely in your browser
  • Progressive Web App (PWA) with full offline capability
  • Sync when connected: changes synchronize automatically when online
  • Air-gapped deployment: Tier 4 runs without any internet connection

Choose Your Path

Access pauhu.ai in your browser. No installation required.

1. Visit pauhu.ai
2. Sign up at pauhu.ai/signup
3. Start translating immediately

Install the Pauhu CLI for command-line workflows:

# Install via npm
npm install -g @pauhu/cli

# Or via pip
pip install pauhu-cli

# Authenticate
pauhu auth login

Integrate Pauhu into your applications:

# Python
pip install pauhu

# TypeScript/JavaScript
npm install @pauhu/sdk

# Go
go get github.com/pauhu/pauhu-go

Use the REST API directly:

curl -X POST https://api.pauhu.ai/v1/translate \
  -H "Authorization: Bearer $PAUHU_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Hello, world!",
    "source": "en",
    "target": "fi"
  }'

System Requirements

Browser Requirements

Browser Minimum Version Notes
Chrome 90+ Full support including WebGPU
Firefox 88+ Full support
Safari 15+ Full support
Edge 90+ Full support (Chromium-based)

CLI Requirements

  • Node.js: 18.0+ (for npm installation)
  • Python: 3.9+ (for pip installation)
  • Operating Systems: Windows 10+, macOS 11+, Linux (glibc 2.17+)

API Requirements

  • HTTPS: All API calls must use HTTPS
  • Authentication: Bearer token (API key) or OAuth 2.0
  • Rate Limits: See Rate Limits

Next Steps

  • 5-minute quickstart

    Get your first translation working in under 5 minutes.

    Quick Start

  • API Reference

    Complete API documentation with examples.

    API Reference

  • Compliance

    EU AI Act, GDPR, and VAHTI compliance documentation.

    Compliance

  • User Guide

    Comprehensive guide to all Pauhu features.

    User Guide