Support you.com gpt-4 model (#233)

This commit is contained in:
Carl-Robert 2023-10-12 11:18:37 +03:00 committed by GitHub
parent 0343842af9
commit 21fa61d2af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 311 additions and 168 deletions

View file

@ -0,0 +1,11 @@
package ee.carlrobert.codegpt.toolwindow.chat;
import com.intellij.util.messages.Topic;
public interface YouModelChangeNotifier {
Topic<YouModelChangeNotifier> YOU_MODEL_CHANGE_NOTIFIER_TOPIC =
Topic.create("youModelChangeTopic", YouModelChangeNotifier.class);
void modelChanged(boolean selected);
}