mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-12 14:10:29 +00:00
* feat: add OpenAI and Claude vision support * refactor: replace awaitility with PlatformTestUtil.waitWithEventsDispatching * feat: display error when image not found * chore: bump llm-client * feat: configurable file watcher and minor code cleanup * fix: ensure image notifications are triggered only for image file types * docs: update changelog * fix: user textarea icon button behaviour * refactor: minor cleanup
14 lines
457 B
Java
14 lines
457 B
Java
package ee.carlrobert.codegpt;
|
|
|
|
import com.intellij.openapi.util.Key;
|
|
import java.util.List;
|
|
|
|
public class CodeGPTKeys {
|
|
|
|
public static final Key<String> PREVIOUS_INLAY_TEXT =
|
|
Key.create("codegpt.editor.inlay.prev-value");
|
|
public static final Key<List<ReferencedFile>> SELECTED_FILES =
|
|
Key.create("codegpt.selectedFiles");
|
|
public static final Key<String> IMAGE_ATTACHMENT_FILE_PATH =
|
|
Key.create("codegpt.imageAttachmentFilePath");
|
|
}
|