Skip to content

Commit

Permalink
Fix plugin ID format (jupyterlab#872)
Browse files Browse the repository at this point in the history
* Fix incorrect plugin ID

* Update plugin ID for inline completions
  • Loading branch information
krassowski authored and Marchlak committed Oct 28, 2024
1 parent f5382ae commit fe31024
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/jupyter-ai/src/completions/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ type IcPluginSettings = ISettingRegistry.ISettings & {
type JaiCompletionToken = IJaiCompletionProvider | null;

export const completionPlugin: JupyterFrontEndPlugin<JaiCompletionToken> = {
id: 'jupyter_ai:inline-completions',
id: '@jupyter-ai/core:inline-completions',
autoStart: true,
requires: [
ICompletionProviderManager,
Expand Down
2 changes: 1 addition & 1 deletion packages/jupyter-ai/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export type DocumentTracker = IWidgetTracker<IDocumentWidget>;
* Initialization data for the jupyter_ai extension.
*/
const plugin: JupyterFrontEndPlugin<void> = {
id: 'jupyter_ai:plugin',
id: '@jupyter-ai/core:plugin',
autoStart: true,
optional: [
IGlobalAwareness,
Expand Down

0 comments on commit fe31024

Please sign in to comment.