Early Access

HeliosDB AI Support

Connect your HeliosDB deployment to an AI knowledge assistant that understands every SQL dialect, configuration parameter, and best practice across the entire HeliosDB platform. Ask questions in natural language, get answers with ready-to-run SQL.

Available for all three tiers — Nano, Lite, and Full. Included free with all HeliosDB Cloud plans. On-premises deployments use a licensed API key.

All Tiers Nano · Lite · Full
<1s Response Time
6K+ Pages of Knowledge
Python
from heliosdb import AISupport

support = AISupport(api_key="HELIOSDB_AISUPPORT_API_KEY")

answer = support.ask(
    "How do I create an HNSW index with PQ compression?",
    context={"tier": "nano", "version": "3.6.0"}
)

print(answer.response)      # Step-by-step guide
print(answer.sql_example)   # Ready-to-run SQL
print(answer.references)    # Links to docs

How It Works

AI Support combines a purpose-trained language model with a retrieval-augmented generation (RAG) pipeline over the entire HeliosDB knowledge base. Every question is matched against documentation, code examples, configuration references, and troubleshooting guides to deliver accurate, context-aware answers.

  • Context-aware retrieval — Your question is matched against the most relevant documentation sections, SQL examples, and configuration references using semantic search.
  • Tier-specific answers — Responses are tailored to your deployment tier (Nano, Lite, or Full) so you only see features and syntax available in your edition.
  • SQL generation — Every answer includes ready-to-run SQL examples that you can copy directly into your queries.
  • Source citations — Answers link back to the official documentation page so you can verify and read further.
Flow
# AI Support Pipeline

User Question
   "How do I set up vector search?"Context Retrieval (RAG)
   Semantic search over 6K+ doc pages
   Match: tier=nano, topic=vector_search
   Retrieve: SQL syntax, config params, examples
      │
Trained Model
   Generate answer with context
   Include SQL examples
   Cite documentation sources
      │
Response
   Step-by-step explanation
   Ready-to-run SQL
   Links to relevant docs

What It Knows

AI Support is trained on the complete HeliosDB documentation corpus, including internal architecture guides, code examples across all supported languages, and every configuration parameter. It understands the differences between tiers and can guide you from getting started to production-grade optimization.

  • SQL syntax — Full DDL/DML/DQL reference for all three tiers, including tier-specific extensions like branching, vector search, stored procedures, and protocol adapters.
  • Configuration — Every heliosdb.toml parameter, ALTER SYSTEM command, and runtime tuning option with explanations and recommended values.
  • Error troubleshooting — Diagnosis and resolution for common errors, warnings, and failure modes across all deployment types.
  • Performance tuning — Query optimization, index strategies, storage mode selection, connection pooling, and caching configuration.
  • Security — TDE encryption, zero-knowledge encryption, RLS policies, ABAC/XACML, TLS/mTLS setup, and compliance guidance.
  • API reference — REST, gRPC, PostgreSQL wire protocol, and all 14 native protocol adapters (Full edition).
  • Migration guides — Step-by-step instructions for migrating from PostgreSQL, MySQL, MongoDB, DynamoDB, and SQLite.
Example Session
# Ask about configuration
> "What's the optimal wal_sync_mode for SSD?"

Answer:
For SSD deployments, set wal_sync_mode to
"fdatasync" in heliosdb.toml:

  [storage]
  wal_sync_mode = "fdatasync"

This avoids the overhead of full fsync while
still guaranteeing durability on SSD hardware.
For NVMe drives, consider "io_uring" mode
(Lite/Full only) for async I/O.

# Ask about SQL
> "How do I branch a database?"

Answer:
Database branching creates an isolated copy-on-
write snapshot:

  CREATE BRANCH dev;
  USE BRANCH dev;
  -- Changes here don't affect main
  MERGE BRANCH dev INTO main;

Two Ways to Deploy

AI Support is included free with HeliosDB Cloud. For self-hosted and on-premises deployments, license an API key.

HeliosDB Cloud

INCLUDED FREE

AI Support is built directly into the HeliosDB Cloud dashboard — no setup, no API keys, no extra cost. Available on all plans including Free.

  • Zero configuration required
  • All Cloud plans (Free, Starter, Pro, Enterprise)
  • Accessible from the Cloud dashboard
  • Always up-to-date with latest docs
Open HeliosDB Cloud

On-Premises / Self-Hosted

CONTACT SALES

License an API key for your on-premises or self-hosted deployment. Each key is scoped to a specific number of databases and connects automatically via environment variable.

  • HELIOSDB_AISUPPORT_API_KEY env var
  • Licensed per database count
  • Works with Nano, Lite, and Full editions
  • Data stays on your infrastructure
Contact Sales

Beyond HeliosDB

AI Support is built on an extensible architecture. Add knowledge about your own systems, connect external tools, or integrate with other database platforms.

HeliosDB Knowledge Base

Deep understanding of all three tiers — Nano, Lite, and Full — including SQL syntax, configuration, architecture internals, and deployment best practices.

🔍

RAG Extension

Add custom knowledge about your specific deployment, internal runbooks, team conventions, and proprietary schema documentation. Extend the knowledge base via RAG pipelines over your own documents.

MCP Integration

Connect AI Support to external tools and workflows via the Model Context Protocol (MCP). Integrate with CI/CD pipelines, monitoring dashboards, and AI agent frameworks like LangChain and CrewAI.

Who Uses AI Support

🚀

Onboarding Acceleration

New developers get instant answers to HeliosDB questions without waiting for senior team members. Reduce onboarding time from weeks to days.

🕑

24/7 Expert Access

No more waiting for support tickets or searching through documentation. Get expert-level answers about HeliosDB at any hour, in any timezone.

🔎

SQL Review & Generation

Validate SQL queries before production. Get optimized alternatives, identify potential performance issues, and generate complex queries from natural language descriptions.

🔒

Compliance Guidance

Ask about encryption setup, access control policies, audit logging, and regulatory compliance configuration. Get step-by-step guidance for SOC 2, HIPAA, and GDPR requirements.

Request Early Access

Be among the first to use HeliosDB AI Support. Available for all tiers — free on Cloud, licensed for on-premises.