feat: improve code completion user experience (#763)

This commit is contained in:
Carl-Robert Linnupuu 2024-11-13 23:18:53 +00:00 committed by GitHub
parent 4e14635492
commit 8daf4f5f05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 718 additions and 262 deletions

View file

@ -17,6 +17,6 @@ public class InfillPromptTemplatePanel extends BasePromptTemplatePanel<InfillPro
@Override
protected String buildPromptDescription(InfillPromptTemplate template) {
return template.buildPrompt(new InfillRequest.Builder("PREFIX", "SUFFIX").build());
return template.buildPrompt(new InfillRequest.Builder("PREFIX", "SUFFIX", 0).build());
}
}