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]'
pip install 'nao-core[starrocks]'

# 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, StarRocks)
  • 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
  • --yes / -y / --no-tty: Run non-interactively. Skips all prompts and uses sensible defaults — useful for AI agents and automation scripts. When combined with a pre-written nao_config.yaml (e.g. written by an agent skill), only scaffolds the folder structure.
  • --name / -n: Project name. When set without an existing nao_config.yaml, this is used as the project name (and folder). In --yes mode without --name, the current directory name is used and the project is initialized in place.

Non-interactive (agent-friendly) mode

For LLM agents and automation, run nao init without any prompts:

# Initialize the current directory as a nao project (uses the directory name)
nao init --yes

# Or create a new sub-folder named "my-project"
nao init --yes --name my-project

# Pre-write nao_config.yaml then scaffold folders without prompting
cat > nao_config.yaml <<'YAML'
project_name: my-project
databases:
  - type: duckdb
    name: local
    path: ":memory:"
YAML
nao init --yes

In non-interactive mode, nao init never asks for input. Configure databases, LLM provider, and integrations by editing nao_config.yaml directly (or by pre-writing it before nao init).

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.2.6-py3-none-win_amd64.whl (65.3 MB view details)

Uploaded Python 3Windows x86-64

nao_core-0.2.6-py3-none-manylinux2014_x86_64.whl (98.6 MB view details)

Uploaded Python 3

nao_core-0.2.6-py3-none-manylinux2014_aarch64.whl (63.2 MB view details)

Uploaded Python 3

nao_core-0.2.6-py3-none-macosx_15_0_x86_64.whl (48.2 MB view details)

Uploaded Python 3macOS 15.0+ x86-64

nao_core-0.2.6-py3-none-macosx_15_0_arm64.whl (77.1 MB view details)

Uploaded Python 3macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: nao_core-0.2.6-py3-none-win_amd64.whl
  • Upload date:
  • Size: 65.3 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.2.6-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce8d157000c8276a4b775226c3f49a288ec11bb366d01653733c2b7e7ff48c64
MD5 ec162aee070973510f548d7312166766
BLAKE2b-256 1fd8887fef45362fce5d0ba69d818d9c3e9c6ead88db374f3e1b1449a290f7e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.2.6-py3-none-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 98.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.2.6-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1c3453d94dde36b0691e2fe0bdfe32de5d8aeee0cf48034f970406e52782026
MD5 28abf1a5c0f4ca6c5a06938ae6408621
BLAKE2b-256 a7d798abaf922c37b0b712ff61b9e86d873fac365d1a0dc5b0cca0016ef26d18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.2.6-py3-none-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 63.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.2.6-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c55cd55d13823b2491eb2a823f7ec0bebcd85bc29b0bb85517aaf8663db869c
MD5 4f9c39b8b923bab50b72fe11af313926
BLAKE2b-256 d0500ab7a73e3371aa937aea4e267db1db5997e71af93ea01bb94179c953b356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.2.6-py3-none-macosx_15_0_x86_64.whl
  • Upload date:
  • Size: 48.2 MB
  • Tags: Python 3, macOS 15.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.2.6-py3-none-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1dae1c6644ef741e46e6f9985f3dc09cd306ee68a3c535a130703ccf6c3a7f88
MD5 e113bd2927eea971ee61b0031fc2d8df
BLAKE2b-256 abc28eb5ed49f9e865f83561b303748cea6ee16c13232b13d5668bfffeb75a0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.2.6-py3-none-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 77.1 MB
  • Tags: Python 3, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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.2.6-py3-none-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e1fd9537bb7706064a754d611e9cd7ee5e5030755ad106463b3b356cc968251d
MD5 d67139548cafd6e5b0d820ba3f8e78a0
BLAKE2b-256 5135bbd2c67358dddb7d5522cde85bf109e23fddce76c530cbf4f70bc3a1afe7

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