Enterprise AI Gateway

Route AI Models
From Anywhere, Securely

A private cloud gateway that connects your AI models to any device. OpenAI-compatible API, WebSocket relay, TV-style pairing — no port forwarding required.

Welcome Back

Sign in to access your dashboard, manage devices, and deploy models.

--
Models Available
--
Relay Connections
REST
OpenAI-Compatible
WSS
WebSocket Relay

How It Works

Your Device
Quest VR / Web / App
OllaBridge Cloud
Gateway + Relay
AI Backend
Ollama / HomePilot

Enterprise-Grade AI Routing

One gateway for all your AI models, devices, and teams.

WebSocket Relay

Devices dial out to the cloud — no port forwarding. Works behind any NAT or CGNAT.

OpenAI-Compatible API

Standard /v1/chat/completions endpoint. Drop-in replacement for any SDK or framework.

GPU Boost Nodes

Connect free Google Colab T4 GPUs as relay workers for blazing-fast inference.

TV-Style Pairing

Simple ABCD-1234 codes. Pair your PC or VR headset in seconds.

Private & Secure

HMAC-SHA256 token hashing, zero plaintext secrets stored. Your data stays yours.

HomePilot Personas

Route persona and personality agents through a single unified gateway with MCP tools.

Choose Your Edition

Open Source

OllaBridge

Self-hosted gateway for developers and teams.

  • Unified OpenAI-compatible API
  • Multi-node WebSocket routing
  • Auto-discovery of models
  • CLI & real-time dashboard
  • MCP server for AI agents
Documentation
Cloud Edition

OllaBridge Cloud

Private cloud relay for multi-user deployments.

  • Everything in Open Source, plus:
  • TV-style device pairing
  • Multi-user device management
  • WebSocket relay through cloud
  • HomePilot persona integration
  • Web dashboard & admin panel
Get Started Free

Quick Start

# Chat with an LLM through OllaBridge Cloud
curl -X POST https://ruslanmv-ollabridge.hf.space/ollama/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen2.5:1.5b",
    "messages": [{"role": "user", "content": "Hello!"}],
    "stream": false
  }'

# Chat with a HomePilot persona
curl -X POST https://ruslanmv-ollabridge.hf.space/ollama/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "personality:therapist",
    "messages": [{"role": "user", "content": "I need advice"}]
  }'