Files
local-api-docs-search/.env.example
7000pctAUTO 5d8e9bb9e0
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled
Initial commit: Add Local API Docs Search CLI tool
2026-02-03 01:18:52 +00:00

21 lines
546 B
Plaintext

# 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