mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-19 07:54:46 +00:00
Move embeddings impl to a different module (#179)
* Move embeddings impl to a different module * Disable plugin verifier for sub modules
This commit is contained in:
parent
d68ef65f8b
commit
3c2c23b3ea
44 changed files with 198 additions and 104 deletions
|
|
@ -0,0 +1,11 @@
|
|||
package ee.carlrobert.codegpt.indexes;
|
||||
|
||||
import com.intellij.util.messages.Topic;
|
||||
|
||||
public interface CodebaseIndexingCompletedNotifier {
|
||||
|
||||
Topic<CodebaseIndexingCompletedNotifier> INDEXING_COMPLETED_TOPIC =
|
||||
Topic.create("codebaseIndexingCompleted", CodebaseIndexingCompletedNotifier.class);
|
||||
|
||||
void indexingCompleted();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue