From b9fa6987e56f6b871ff21e3e11b732740726dcce Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 2 Nov 2023 17:49:02 +0900 Subject: [PATCH] docs: update run_fully_local.md (#1556) # Description emedding -> embedding ## Checklist before requesting a review Please delete options that are not relevant. - [x] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [x] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate): --- docs/docs/Developers/run_fully_local.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/Developers/run_fully_local.md b/docs/docs/Developers/run_fully_local.md index d7b4a8e3d..901fdefc7 100644 --- a/docs/docs/Developers/run_fully_local.md +++ b/docs/docs/Developers/run_fully_local.md @@ -157,7 +157,7 @@ This can be remedied by using local embeddings for document embeddings. In backe model_kwargs={'device': 'cuda'}, encode_kwargs={'normalize_embeddings': False} ) # pyright: ignore reportPrivateUsage=none - logger.info('||| creating emedding') + logger.info('||| creating embedding') try: sids = self.commons["documents_vector_store"].add_documents([doc]) if sids and len(sids) > 0: