|
|
|
|
|
by jmorgan
1023 days ago
|
|
Continue has a great guide on using the new Code Llama model launched by Facebook last week: https://continue.dev/docs/walkthroughs/codellama Continue also works with various backends and fine-tuned versions of Code Llama. E.g. for a local experience with GPU acceleration on macOS, continue can be used with Ollama (https://github.com/jmorganca/ollama): ollama pull codellama
from continuedev.src.continuedev.libs.llm.ollama import Ollama
config = ContinueConfig(
models=Models(
default=Ollama(model="wizardcoder:34b-python")
)
)
|
|
https://github.com/xnul/code-llama-for-vscode