We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48366da commit 2fd5fdfCopy full SHA for 2fd5fdf
1 file changed
devtron-docs-rag-server/api.py
@@ -35,8 +35,8 @@ async def lifespan(app: FastAPI):
35
global doc_processor, vector_store
36
logger.info("Initializing Devtron Documentation API Server...")
37
# Configuration from environment
38
- docs_repo_url = os.getenv("DOCS_REPO_URL", "https://github.com/devtron-labs/devtron")
39
- docs_path = os.getenv("DOCS_PATH", "./devtron-docs")
+ docs_repo_url = os.getenv("DOCS_REPO_URL", "https://github.com/devtron-labs/devtron-documentation")
+ docs_path = os.getenv("DOCS_PATH", "./docs")
40
embedding_model = os.getenv("EMBEDDING_MODEL", "BAAI/bge-large-en-v1.5")
41
chunk_size = int(os.getenv("CHUNK_SIZE", "1000"))
42
chunk_overlap = int(os.getenv("CHUNK_OVERLAP", "0"))
0 commit comments