From 838778aa3e6b1166f3b217c07e5ef7cfd3b2cbab Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 13 Apr 2024 14:40:54 -0700 Subject: [PATCH] fix: typo --- backend/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/config.py b/backend/config.py index cb4aca756..311a9f05d 100644 --- a/backend/config.py +++ b/backend/config.py @@ -413,7 +413,7 @@ RAG_EMBEDDING_MODEL_AUTO_UPDATE = ( ) -# device type embbeding models - "cpu" (default), "cuda" (nvidia gpu required) or "mps" (apple silicon) - choosing this right can lead to better performance +# device type embedding models - "cpu" (default), "cuda" (nvidia gpu required) or "mps" (apple silicon) - choosing this right can lead to better performance USE_CUDA = os.environ.get("USE_CUDA_DOCKER", "false") if USE_CUDA.lower() == "true":