I have installed the Tabby extension and Docker Desktop with WSL. The Tabby server is running and the extension is set up properly. However, when I try to invoke Tabby by pressing tab in an Angular TypeScript file, no suggestions are shown. Am I missing something?
Kévin Le Diouron
Asked on Dec 07, 2023
There could be a few reasons why Tabby is not providing suggestions when invoking by tab in an Angular TypeScript file:
Make sure you have installed the Tabby extension for VSCode and connected it to the Tabby server. You can follow the instructions in the Tabby documentation to install and configure the extension.
Check if the server endpoint is correctly set in the Tabby Agent Settings. If you leave it empty, the default endpoint will be used. You can uncomment line 10 in the configuration file to specify a custom endpoint.
If the above steps don't work, you can try troubleshooting the issue by setting the log level to debug. Uncomment lines 26-27 in the configuration file to enable debug logging.
If the requests are timing out, you can try running the Tabby server on a GPU with CUDA support instead. This can significantly improve performance. Alternatively, you can modify the client-side timeout limit in the config.toml file.
It's also worth mentioning that running Tabby on CUDA is the preferred way and can provide faster results.
I hope this helps! Let me know if you have any further questions.