An API which mocks llama.cpp to enable support for Code Llama with the Continue Visual Studio Code extension.
As of the time of writing and to my knowledge, this is the only way to use Code Llama with VSCode locally without having to sign up or get an API key for a service. The only exception to this is Continue with Ollama, but Ollama doesn't support Windows or Linux. On the other hand, Code Llama for VSCode is completely cross-platform and will run wherever Meta's own codellama code will run.
Now let's get started!
Prerequisites:
After you are able to use both independently, we will glue them together with Code Llama for VSCode.
Steps:
- Move
llamacpp_mock_api.pyto yourcodellamafolder and install Flask to your environment withpip install flask. - Run
llamacpp_mock_api.pywith your Code Llama Instruct torchrun command. For example:
python llamacpp_mock_api.py
--model_id codellama/CodeLlama-13b-Instruct-hf \
--max_seq_len 512
- Type
/configin VSCode with Continue and make changes toconfig.pyso it looks like this.
Restart VSCode or reload the Continue extension and you should now be able to use Code Llama for VSCode!
TODO: Response streaming