Skip to main content

nao Core is your analytics context builder with the best chat interface.

Project description

nao CLI

Command-line interface for nao chat.

Installation

Install the core package (lightweight, no database or LLM dependencies):

pip install nao-core

Then add only the providers you need:

# Database backends
pip install 'nao-core[postgres]'
pip install 'nao-core[bigquery]'
pip install 'nao-core[snowflake]'
pip install 'nao-core[duckdb]'
pip install 'nao-core[clickhouse]'
pip install 'nao-core[databricks]'
pip install 'nao-core[mysql]'
pip install 'nao-core[mssql]'
pip install 'nao-core[athena]'
pip install 'nao-core[trino]'
pip install 'nao-core[redshift]'
pip install 'nao-core[fabric]'

# LLM providers
pip install 'nao-core[openai]'
pip install 'nao-core[anthropic]'
pip install 'nao-core[mistral]'
pip install 'nao-core[gemini]'
pip install 'nao-core[ollama]'

# Integrations
pip install 'nao-core[notion]'

Combine multiple extras in a single install:

pip install 'nao-core[postgres,openai]'
pip install 'nao-core[snowflake,bigquery,anthropic]'

Or install everything at once (equivalent to the previous default):

pip install 'nao-core[all]'

Convenience groups are also available:

pip install 'nao-core[all-databases]'  # all database backends
pip install 'nao-core[all-llms]'       # all LLM providers

Usage

nao --help
Usage: nao COMMAND

╭─ Commands ────────────────────────────────────────────────────────────────╮
│ chat         Start the nao chat UI.                                       │
│ debug        Test connectivity to configured resources.                   │
│ init         Initialize a new nao project.                                │
│ sync         Sync resources to local files.                               │
│ test         Run and explore nao tests.                                   │
│ --help (-h)  Display this message and exit.                               │
│ --version    Display application version.                                 │
╰───────────────────────────────────────────────────────────────────────────╯

Initialize a new nao project

nao init

This will create a new nao project in the current directory. It will prompt you for a project name and ask you to configure:

  • Database connections (BigQuery, DuckDB, Databricks, Snowflake, PostgreSQL, Redshift, MSSQL, Trino)
  • Git repositories to sync
  • LLM provider (OpenAI, Anthropic, Mistral, Gemini, OpenRouter, Ollama)
  • ai_summary template + model (prompted only when you enable ai_summary for databases)
  • Slack integration
  • Notion integration

The resulting project structure looks like:

<project>/
├── nao_config.yaml
├── .naoignore
├── RULES.md
├── databases/
├── queries/
├── docs/
├── semantics/
├── repos/
├── agent/
│   ├── tools/
│   └── mcps/
└── tests/

Options:

  • --force / -f: Force re-initialization even if the project already exists

Start the nao chat UI

nao chat

This will start the nao chat UI. It will open the chat interface in your browser at http://localhost:5005.

Test connectivity

nao debug

Tests connectivity to all configured databases and LLM providers. Displays a summary table showing connection status and details for each resource.

Sync resources

nao sync

Syncs configured resources to local files:

  • Databases - generates markdown docs (columns.md, preview.md, description.md) for each table into databases/
  • Git repositories — clones or pulls repos into repos/
  • Notion pages — exports pages as markdown into docs/notion/

After syncing, any Jinja templates (*.j2 files) in the project directory are rendered with the nao context.

Optional ai_summary generation:

  • Add ai_summary to a database connection templates list to render ai_summary.md.
  • Use prompt("...") inside Jinja templates to generate ai_summary content.
  • prompt(...) requires llm.provider, llm.annotation_model, and llm.api_key (except for ollama).

Run tests

nao test

Runs test cases defined as YAML files in tests/. Each test has a name, prompt, and expected sql. Results are saved to tests/outputs/.

Options:

  • --model / -m: Models to test against (default: openai:gpt-4.1). Can be specified multiple times.
  • --threads / -t: Number of parallel threads (default: 1)

Examples:

nao test -m openai:gpt-4.1
nao test -m openai:gpt-4.1 -m anthropic:claude-sonnet-4-20250514
nao test --threads 4

Explore test results

nao test server

Starts a local web server to explore test results in a browser UI showing pass/fail status, token usage, cost, and detailed data comparisons.

Options:

  • --port / -p: Port to run the server on (default: 8765)
  • --no-open: Don't automatically open the browser

BigQuery service account permissions

When you connect BigQuery during nao init, the service account used by credentials_path/ADC must be able to list datasets and run read-only queries to generate docs. Grant the account:

  • Project: roles/bigquery.jobUser (or roles/bigquery.user) so the CLI can submit queries
  • Each dataset you sync: roles/bigquery.dataViewer (or higher) to read tables

The combination above mirrors the typical "BigQuery User" setup and is sufficient for nao's metadata and preview pulls.

Snowflake authentication

Snowflake supports three authentication methods during nao init:

  • SSO: Browser-based authentication (recommended for organizations with SSO policies)
  • Password: Traditional username/password
  • Key-pair: Private key file with optional passphrase

Development

Building the package

cd cli
python build.py --help
Usage: build.py [OPTIONS]

Build and package nao-core CLI.

╭─ Parameters ──────────────────────────────────────────────────────────────────╮
│ --force -f --no-force              Force rebuild the server binary             │
│ --skip-server -s --no-skip-server  Skip server build, only build Python pkg   │
│ --bump                             Bump version (patch, minor, major)          │
╰───────────────────────────────────────────────────────────────────────────────╯

This will:

  1. Build the frontend with Vite
  2. Compile the backend with Bun into a standalone binary
  3. Bundle everything into a Python wheel in dist/

Installing for development

cd cli
pip install -e '.[all]'

Publishing to PyPI

# Build first
python build.py

# Publish
uv publish dist/*

Architecture

nao chat (CLI command)
    ↓ spawns
nao-chat-server (Bun-compiled binary, port 5005)
  + FastAPI server (port 8005)
    ↓ serves
Backend API + Frontend Static Files
    ↓
Browser at http://localhost:5005

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

nao_core-0.1.8-py3-none-win_amd64.whl (57.8 MB view details)

Uploaded Python 3Windows x86-64

nao_core-0.1.8-py3-none-manylinux2014_x86_64.whl (91.1 MB view details)

Uploaded Python 3

nao_core-0.1.8-py3-none-manylinux2014_aarch64.whl (55.7 MB view details)

Uploaded Python 3

nao_core-0.1.8-py3-none-macosx_15_0_x86_64.whl (40.7 MB view details)

Uploaded Python 3macOS 15.0+ x86-64

nao_core-0.1.8-py3-none-macosx_15_0_arm64.whl (69.5 MB view details)

Uploaded Python 3macOS 15.0+ ARM64

File details

Details for the file nao_core-0.1.8-py3-none-win_amd64.whl.

File metadata

  • Download URL: nao_core-0.1.8-py3-none-win_amd64.whl
  • Upload date:
  • Size: 57.8 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nao_core-0.1.8-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 f68a8e2ec5c649f9b8428a2546c0319debc10ef3be2e4cb96d4b4242728aa015
MD5 72785f822c8d4cfaec881f31f8cfe7b1
BLAKE2b-256 87694b8251256d6210eba5d4c0329476424b4b28aa37ba830c90932db9942549

See more details on using hashes here.

File details

Details for the file nao_core-0.1.8-py3-none-manylinux2014_x86_64.whl.

File metadata

  • Download URL: nao_core-0.1.8-py3-none-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 91.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nao_core-0.1.8-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47b2078adbe9c29539d929d0cdc2382849e19bf34e7472061e53d14e8919fb72
MD5 500d6c6fe0f8550499714cbd7db633f6
BLAKE2b-256 5c1e446821bd472248225028a99f41be15b4b91d1e08c2a374726b4790e4ba0c

See more details on using hashes here.

File details

Details for the file nao_core-0.1.8-py3-none-manylinux2014_aarch64.whl.

File metadata

  • Download URL: nao_core-0.1.8-py3-none-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 55.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nao_core-0.1.8-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 befd1376a229638f3c80bd4460486770763f13be3026e3b27b18aad4de8407d4
MD5 dc794eb106307c6d62799cd62dedaf66
BLAKE2b-256 580a7df04b46797ed8371b56055bbced6253bcad2ad33c35777e3b325c600446

See more details on using hashes here.

File details

Details for the file nao_core-0.1.8-py3-none-macosx_15_0_x86_64.whl.

File metadata

  • Download URL: nao_core-0.1.8-py3-none-macosx_15_0_x86_64.whl
  • Upload date:
  • Size: 40.7 MB
  • Tags: Python 3, macOS 15.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nao_core-0.1.8-py3-none-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f1b4eafea4c808419ee8e65a986efa7d2a0bfd87205147dbf723d32a8f127631
MD5 23fbc9a26004d9b9279677829dea1ea8
BLAKE2b-256 3cf7644369dcfc6192924c4f4de397924a32a4f018223e06d065519b8ac084fc

See more details on using hashes here.

File details

Details for the file nao_core-0.1.8-py3-none-macosx_15_0_arm64.whl.

File metadata

  • Download URL: nao_core-0.1.8-py3-none-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 69.5 MB
  • Tags: Python 3, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nao_core-0.1.8-py3-none-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ddbab9fed59db2091e379fd9f31a37adee8c1640869011cfab8b2123a8f2994f
MD5 a7f0bfa3be95cebe88143e77ad282eb4
BLAKE2b-256 7b6edf65d432c356176a465c13c38ff14bc922639f3488ce61763d2504c2e85a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page