Carl-Robert Linnupuu
Carl-Robert Linnupuu
This will be fixed in the next release. I'm not yet entirely sure why it was added in the first place.
Hmm, it looks like it was unable to create the required folder for telemetry configuration. Definitely not ideal, but also not the highest priority.
Hi Mikhail, IntelliJ has its own JRE, so the certificate must be added to the correct location. Have you tried the following? - https://github.com/carlrobertoh/CodeGPT/issues/480#issuecomment-2317153421
Hi, please upgrade the plugin to the latest version. Related issue: https://github.com/carlrobertoh/CodeGPT/issues/285
Hmm, that's weird. The only reason I can see for this to happen is if you don't have the OpenAI key set or if no files are selected. https://github.com/carlrobertoh/CodeGPT/blob/master/src/main/java/ee/carlrobert/codegpt/actions/GenerateGitCommitMessageAction.java#L58C13-L58C13
@GiGurra The issue is that the plugin cannot find any files in the sidebar tool window's checkbox tree. The temporary solution is to switch to the dialog view.
Hi @mlaugharn Thank you for the feature request. Unfortunately, at the moment the plugin doesn't support model fine-tuning, however this is indeed a really good idea and can be useful...
Hi Context-aware chat experience is the new feature on which I am currently working. Currently, the initial plan is to allow users to index their entire codebase (or single files...
Hey, the models are stored in the hidden folder named `.codegpt` within your home directory. ```bash cd ~/.codegpt/models ```
In theory, it should be possible to listen for change events and trigger certain actions based on those events: ```java public class CodeChangeListener implements BulkFileListener { private final ChangeListManager changeListManager;...