diff options
-rw-r--r-- | continuedev/src/continuedev/core/context.py | 5 | ||||
-rw-r--r-- | continuedev/src/continuedev/server/meilisearch_server.py | 1 | ||||
-rw-r--r-- | docs/docs/troubleshooting.md | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/continuedev/src/continuedev/core/context.py b/continuedev/src/continuedev/core/context.py index ffe22d63..bfb89561 100644 --- a/continuedev/src/continuedev/core/context.py +++ b/continuedev/src/continuedev/core/context.py @@ -225,10 +225,7 @@ class ContextManager: await self.load_index(sdk.ide.workspace_directory) logger.debug("Loaded Meilisearch index") except asyncio.TimeoutError: - logger.warning("MeiliSearch did not start within 20 seconds") - logger.warning( - "MeiliSearch not running, avoiding any dependent context providers" - ) + logger.warning("Meilisearch is not running. As of now, Continue does not attempt to download Meilisearch on Windows because the download process is more involved. If you'd like install Meilisearch (which allows you to reference context by typing '@' (e.g. files, GitHub issues, etc.)), follow the instructions here: https://www.meilisearch.com/docs/learn/getting_started/installation. Alternatively, you can track our progress on support for Meilisearch on Windows here: https://github.com/continuedev/continue/issues/408.") create_async_task(start_meilisearch(context_providers)) diff --git a/continuedev/src/continuedev/server/meilisearch_server.py b/continuedev/src/continuedev/server/meilisearch_server.py index 98b48685..037ce8fa 100644 --- a/continuedev/src/continuedev/server/meilisearch_server.py +++ b/continuedev/src/continuedev/server/meilisearch_server.py @@ -67,7 +67,6 @@ async def check_meilisearch_running() -> bool: return False return True except Exception as e: - logger.debug(e) return False except Exception: return False diff --git a/docs/docs/troubleshooting.md b/docs/docs/troubleshooting.md index 70dec2bf..2f7c12ae 100644 --- a/docs/docs/troubleshooting.md +++ b/docs/docs/troubleshooting.md @@ -50,6 +50,10 @@ If your Continue server is not setting up, try checking the console logs: 3. Select `Console` 4. Read the console logs +## Meilisearch on Windows + +As of now Windows users must manually download and start Meilisearch to use the '@' context referencing feature. To do so, follow the instructions here: https://www.meilisearch.com/docs/learn/getting_started/installation. Alternatively, you can track our progress on support for Meilisearch on Windows here: https://github.com/continuedev/continue/issues/408. Once Meilisearch is up and running on http://localhost:7700, Continue should be able to automatically connect. You may just have to reload the VS Code window first. + ## Still having trouble? Create a GitHub issue [here](https://github.com/continuedev/continue/issues/new?assignees=&labels=bug&projects=&template=bug-report-%F0%9F%90%9B.md&title=), leaving the details of your problem, and we'll be able to more quickly help you out. |