Initial commit: Add Local API Docs Search CLI tool
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-03 01:18:52 +00:00
parent 37f77c307d
commit 5d8e9bb9e0

20
.env.example Normal file
View File

@@ -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