mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 20:54:49 +07:00
* Switched to the project-level dependency everywhere * Introduced a new module intellij.platform.ml.logs to separate ml-api library usages from intellij.platform.ml and intellij.platform.ml.impl modules * The following models has been adapted to the latest ML API version: python imports ranking, fuzzy resolve, completion trigger model, jetenry inline prompt detection, jetenry fleet code classification Merge-request: IJ-MR-166415 Merged-by: Vladimir Fedorov <890readrid@gmail.com> GitOrigin-RevId: 9056efba5a5397a700daabb453ee1477cfaabdf3
17 lines
905 B
XML
17 lines
905 B
XML
<idea-plugin package="com.intellij.python.ml.features">
|
|
<dependencies>
|
|
<module name="intellij.platform.ml.logs"/>
|
|
<module name="intellij.python.psi.impl"/>
|
|
</dependencies>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<statistics.counterUsagesCollector implementationClass="com.intellij.python.ml.features.imports.PyCharmImportsRankingLogs"/>
|
|
<registryKey
|
|
key="quickfix.ranking.ml"
|
|
defaultValue="[IN_EXPERIMENT|ENABLED|DISABLED*]"
|
|
description="Enable ML ranking in quick fix for missing imports"/>
|
|
<postStartupActivity implementation="com.intellij.python.ml.features.imports.QuickfixRankingModelLoading"/>
|
|
<applicationService serviceInterface="com.jetbrains.python.codeInsight.imports.ImportChooser"
|
|
serviceImplementation="com.intellij.python.ml.features.imports.PyMLImportChooser" overrides="true"/>
|
|
</extensions>
|
|
</idea-plugin>
|