Initial commit: Add Local API Docs Search CLI tool
This commit is contained in:
20
.env.example
Normal file
20
.env.example
Normal 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
|
||||||
Reference in New Issue
Block a user