From 5d8e9bb9e002f55bc35d7178416e65cee28d9ecc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 01:18:52 +0000 Subject: [PATCH] Initial commit: Add Local API Docs Search CLI tool --- .env.example | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..dc8b0c2 --- /dev/null +++ b/.env.example @@ -0,0 +1,20 @@ +# Local API Docs Search - Environment Configuration +# Copy this file to .env and modify as needed + +# Path to directory containing API documentation to index +API_DOCS_INDEX_PATH=./docs + +# Name of the embedding model to use +API_DOCS_MODEL_NAME=all-MiniLM-L6-v2 + +# Device to run embeddings on (cpu, cuda, auto) +API_DOCS_EMBEDDING_DEVICE=cpu + +# Directory for ChromaDB persistence +API_DOCS_CHROMA_PERSIST_DIR=.api-docs/chroma + +# Maximum number of results to return per search +API_DOCS_DEFAULT_LIMIT=10 + +# Enable verbose logging +API_DOCS_VERBOSE=false