fix: build

This commit is contained in:
Carl-Robert Linnupuu 2024-05-07 18:20:06 +03:00
parent 2dfb1b0800
commit 13c59cc97b

View file

@ -34,10 +34,10 @@ public class LlamaSettings implements PersistentStateComponent<LlamaSettingsStat
this.state.setHuggingFaceModel(HuggingFaceModel.CODE_LLAMA_7B_Q4);
}
if (this.state.getRemoteModelInfillPromptTemplate() == null) {
this.state.setRemoteModelInfillPromptTemplate(InfillPromptTemplate.LLAMA);
this.state.setRemoteModelInfillPromptTemplate(InfillPromptTemplate.CODE_LLAMA);
}
if (this.state.getLocalModelPromptTemplate() == null) {
this.state.setLocalModelInfillPromptTemplate(InfillPromptTemplate.LLAMA);
this.state.setLocalModelInfillPromptTemplate(InfillPromptTemplate.CODE_LLAMA);
}
}