NLWeb Setup
Before writing code
Fetch live docs first:
- Fetch https://github.com/nlweb-ai/NLWeb (README) for the current minimum Python version and required deps.
- Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/nlweb-hello-world.md for the canonical hello-world flow.
- Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/nlweb-cli.md for current
nlweb CLI flags.
- Web-search
site:github.com/nlweb-ai/NLWeb docs/release_notes and read the most recent dated release note — config keys and required env vars change between releases.
- Identify the default
write_endpoint and verify which backends are enabled by default in config/config_retrieval.yaml on main.
Conceptual Architecture
What "setup" produces
A working NLWeb dev environment has four parts:
- Cloned repo + Python virtualenv with requirements installed.
.env file with provider credentials (OpenAI/Azure OpenAI key + retrieval backend secrets).
- Sample data ingested into the local vector store (Qdrant local by default).
- A running aiohttp server on
:8000 with /ask, /mcp, /sites reachable.
Three Default-Enabled Backends — Watch Out
NLWeb ships with three retrieval backends enabled by default in config_retrieval.yaml:
qdrant_local (file-backed, fine for dev)
nlweb_west (Azure AI Search — requires Azure credentials)
shopify_mcp (queries Shopify's MCP endpoint, requires network)
For most local-dev cases, disable the latter two by setting enabled: false so you don't get connection errors at startup. The write_endpoint should point to qdrant_local for dev.
Setup Decision Checklist
- LLM provider — OpenAI, Azure OpenAI (default), Anthropic, Gemini, Ollama (offline), Snowflake Cortex?
- Embedding provider — must match between ingest and query; default is
text-embedding-3-small on Azure OpenAI.
- Retrieval write endpoint — Qdrant local for dev, Azure AI Search / Snowflake Cortex / pgvector for prod.
- Data source — Schema.org JSON-LD on the site, RSS/Atom feed, sitemap.xml, or CSV?
- Mode —
development (allows query-string config overrides) or production in config_webserver.yaml?
- OAuth — anonymous-only, or login-gated (GitHub/Google/Microsoft/Facebook)?
Project Layout (after setup)
NLWeb/ # cloned repo
├── AskAgent/python/
│ ├── app-aiohttp.py # main entry
│ ├── core/, methods/, webserver/ # core code
│ ├── llm_providers/, embedding_providers/, retrieval_providers/
│ └── data_loading/
├── config/
│ ├── config_llm.yaml
│ ├── config_embedding.yaml
│ ├── config_retrieval.yaml
│ ├── config_nlweb.yaml
│ ├── config_webserver.yaml
│ ├── config_oauth.yaml
│ ├── config_storage.yaml
│ ├── config_tools.yaml
│ ├── site_types.xml
│ └── prompts.xml
├── data/db/ # qdrant_local file store
├── .env # YOUR credentials (gitignored)
└── docs/, scripts/, demo/, tests/
Setup Sequence
git clone https://github.com/nlweb-ai/NLWeb && cd NLWeb
nlweb init-python (or manual python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt)
nlweb init — interactive prompts walk through LLM + retrieval selection and write .env
- Disable the unwanted default backends in
config/config_retrieval.yaml (nlweb_west, shopify_mcp for local-only dev)
nlweb data-load <source> <site-name> — ingest sample content (use a small RSS feed for first run)
nlweb check — runs connectivity diagnostics; resolve any red flags
nlweb app — start the server, hit http://localhost:8000/
- Test
/ask?query=hello&site=<site-name>&streaming=false
.env Conventions
NLWeb expects credentials via env vars (never YAML). Common keys (verify live):
OPENAI_API_KEY, AZURE_OPENAI_API_KEY, AZURE_OPENAI_ENDPOINT
ANTHROPIC_API_KEY, GEMINI_API_KEY
AZURE_SEARCH_ENDPOINT, AZURE_SEARCH_API_KEY
QDRANT_API_KEY (only for remote Qdrant)
SNOWFLAKE_USER, SNOWFLAKE_PASSWORD, SNOWFLAKE_ACCOUNT
CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID
Verification Targets
After setup, these should work:
curl http://localhost:8000/sites → JSON list including your loaded site
curl 'http://localhost:8000/ask?query=test&site=<your-site>&streaming=false' → JSON with results
curl -X POST http://localhost:8000/mcp -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' → ask, list_sites, optionally who
Common Setup Failures
nlweb check fails on Azure: usually AZURE_OPENAI_ENDPOINT missing trailing slash or wrong deployment name.
- Embedding dim mismatch on retrieval: data was loaded with a different embedding provider than runtime config. Either re-ingest or change
preferred_provider in config_embedding.yaml.
- Server starts but
/ask returns empty: site name in the query doesn't match the site value used during ingest, or the sites: allowlist in config_nlweb.yaml excludes it.
- Slow first request: cold model loading +
/who endpoint pinging nlwm.azurewebsites.net. Disable who_endpoint_enabled for offline dev.
Always re-verify against the latest hello-world doc — the exact env-var names and CLI flags change.
1---2name: nlweb-setup3description: Bootstrap a local NLWeb development environment from scratch — clone the repo, configure .env, install Python deps via `nlweb init-python`, run `nlweb init` for interactive LLM/retrieval selection, load sample Schema.org data, and verify with `nlweb check`. Use when starting a new NLWeb deployment from zero.4---56# NLWeb Setup78## Before writing code910**Fetch live docs first**:111. Fetch https://github.com/nlweb-ai/NLWeb (README) for the current minimum Python version and required deps.122. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/nlweb-hello-world.md for the canonical hello-world flow.133. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/nlweb-cli.md for current `nlweb` CLI flags.144. Web-search `site:github.com/nlweb-ai/NLWeb docs/release_notes` and read the **most recent** dated release note — config keys and required env vars change between releases.155. Identify the default `write_endpoint` and verify which backends are enabled by default in `config/config_retrieval.yaml` on `main`.1617## Conceptual Architecture1819### What "setup" produces2021A working NLWeb dev environment has four parts:22231. **Cloned repo** + Python virtualenv with requirements installed.242. **`.env`** file with provider credentials (OpenAI/Azure OpenAI key + retrieval backend secrets).253. **Sample data** ingested into the local vector store (Qdrant local by default).264. **A running aiohttp server** on `:8000` with `/ask`, `/mcp`, `/sites` reachable.2728### Three Default-Enabled Backends — Watch Out2930NLWeb ships with **three retrieval backends enabled by default** in `config_retrieval.yaml`:31- `qdrant_local` (file-backed, fine for dev)32- `nlweb_west` (Azure AI Search — requires Azure credentials)33- `shopify_mcp` (queries Shopify's MCP endpoint, requires network)3435For most local-dev cases, disable the latter two by setting `enabled: false` so you don't get connection errors at startup. The `write_endpoint` should point to `qdrant_local` for dev.3637### Setup Decision Checklist3839- **LLM provider** — OpenAI, Azure OpenAI (default), Anthropic, Gemini, Ollama (offline), Snowflake Cortex?40- **Embedding provider** — must match between ingest and query; default is `text-embedding-3-small` on Azure OpenAI.41- **Retrieval write endpoint** — Qdrant local for dev, Azure AI Search / Snowflake Cortex / pgvector for prod.42- **Data source** — Schema.org JSON-LD on the site, RSS/Atom feed, sitemap.xml, or CSV?43- **Mode** — `development` (allows query-string config overrides) or `production` in `config_webserver.yaml`?44- **OAuth** — anonymous-only, or login-gated (GitHub/Google/Microsoft/Facebook)?4546### Project Layout (after setup)4748```49NLWeb/ # cloned repo50├── AskAgent/python/51│ ├── app-aiohttp.py # main entry52│ ├── core/, methods/, webserver/ # core code53│ ├── llm_providers/, embedding_providers/, retrieval_providers/54│ └── data_loading/55├── config/56│ ├── config_llm.yaml57│ ├── config_embedding.yaml58│ ├── config_retrieval.yaml59│ ├── config_nlweb.yaml60│ ├── config_webserver.yaml61│ ├── config_oauth.yaml62│ ├── config_storage.yaml63│ ├── config_tools.yaml64│ ├── site_types.xml65│ └── prompts.xml66├── data/db/ # qdrant_local file store67├── .env # YOUR credentials (gitignored)68└── docs/, scripts/, demo/, tests/69```7071### Setup Sequence72731. `git clone https://github.com/nlweb-ai/NLWeb && cd NLWeb`742. `nlweb init-python` (or manual `python -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt`)753. `nlweb init` — interactive prompts walk through LLM + retrieval selection and write `.env`764. Disable the unwanted default backends in `config/config_retrieval.yaml` (`nlweb_west`, `shopify_mcp` for local-only dev)775. `nlweb data-load <source> <site-name>` — ingest sample content (use a small RSS feed for first run)786. `nlweb check` — runs connectivity diagnostics; resolve any red flags797. `nlweb app` — start the server, hit `http://localhost:8000/`808. Test `/ask?query=hello&site=<site-name>&streaming=false`8182### .env Conventions8384NLWeb expects credentials via env vars (never YAML). Common keys (verify live):85- `OPENAI_API_KEY`, `AZURE_OPENAI_API_KEY`, `AZURE_OPENAI_ENDPOINT`86- `ANTHROPIC_API_KEY`, `GEMINI_API_KEY`87- `AZURE_SEARCH_ENDPOINT`, `AZURE_SEARCH_API_KEY`88- `QDRANT_API_KEY` (only for remote Qdrant)89- `SNOWFLAKE_USER`, `SNOWFLAKE_PASSWORD`, `SNOWFLAKE_ACCOUNT`90- `CLOUDFLARE_API_TOKEN`, `CLOUDFLARE_ACCOUNT_ID`9192### Verification Targets9394After setup, these should work:95- `curl http://localhost:8000/sites` → JSON list including your loaded site96- `curl 'http://localhost:8000/ask?query=test&site=<your-site>&streaming=false'` → JSON with results97- `curl -X POST http://localhost:8000/mcp -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'` → `ask`, `list_sites`, optionally `who`9899### Common Setup Failures100101- **`nlweb check` fails on Azure**: usually `AZURE_OPENAI_ENDPOINT` missing trailing slash or wrong deployment name.102- **Embedding dim mismatch on retrieval**: data was loaded with a different embedding provider than runtime config. Either re-ingest or change `preferred_provider` in `config_embedding.yaml`.103- **Server starts but `/ask` returns empty**: site name in the query doesn't match the `site` value used during ingest, or the `sites:` allowlist in `config_nlweb.yaml` excludes it.104- **Slow first request**: cold model loading + `/who` endpoint pinging `nlwm.azurewebsites.net`. Disable `who_endpoint_enabled` for offline dev.105106Always re-verify against the latest hello-world doc — the exact env-var names and CLI flags change.