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

pip install nao-core

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)
  • Git repositories to sync
  • LLM provider (OpenAI, Anthropic, Mistral, Gemini)
  • 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, profiling.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.

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 .

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.0.51-py3-none-manylinux2014_x86_64.whl (43.7 MB view details)

Uploaded Python 3

nao_core-0.0.51-py3-none-manylinux2014_aarch64.whl (42.9 MB view details)

Uploaded Python 3

nao_core-0.0.51-py3-none-macosx_15_0_x86_64.whl (28.8 MB view details)

Uploaded Python 3macOS 15.0+ x86-64

nao_core-0.0.51-py3-none-macosx_15_0_arm64.whl (26.5 MB view details)

Uploaded Python 3macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: nao_core-0.0.51-py3-none-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 43.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.0.51-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb230070dfcabf2eba13c00d76b7714d7968a0ce1ca81230158ee40dcadb3b24
MD5 f89831ac0523fa7f6ca94d4e6f838802
BLAKE2b-256 d30a2baee7390c7b0b798240e4b9f942725ff938930c02cee0858ba40916e32a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.0.51-py3-none-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 42.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.0.51-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70a21a858d0de4d52673b327109c53a16c263979c765a79d77e9a6fc3f7155c2
MD5 219e3e7b694077b6944a610dd0c62520
BLAKE2b-256 b6e282964f0e72f4e80ac4affcd573c1727e6b534a4553389faa077effda1e9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.0.51-py3-none-macosx_15_0_x86_64.whl
  • Upload date:
  • Size: 28.8 MB
  • Tags: Python 3, macOS 15.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.0.51-py3-none-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e2225e3117729c9c8877bc6124a545ea2abdfe000064b4cfd0497cf4062670e9
MD5 69728cc6ec76f61c580065fdca989a56
BLAKE2b-256 cd8fd7d7a597c8a6fbc5bcb8ea6da7ae6d8514643c902e39392b1b65ba2a797e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nao_core-0.0.51-py3-none-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 26.5 MB
  • Tags: Python 3, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.0.51-py3-none-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2d1fc745f2030e521030b48c7019717b4fd8a6d101c6002442b483bc30501666
MD5 91e5d5d59a7de96f1dac1e137834ad61
BLAKE2b-256 262675a2d9a4c984303a960bce50aae5102caf38cb8a58941e432d3d6a1a1beb

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