@difizen/libro-prompt-cell 0.2.41-next.0 → 0.2.41-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-prompt-cell",
3
- "version": "0.2.41-next.0",
3
+ "version": "0.2.41-next.1",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -32,11 +32,11 @@
32
32
  "src"
33
33
  ],
34
34
  "dependencies": {
35
- "@difizen/libro-code-editor": "^0.2.41-next.0",
36
- "@difizen/libro-jupyter": "^0.2.41-next.0",
37
- "@difizen/libro-rendermime": "^0.2.41-next.0",
38
- "@difizen/libro-common": "^0.2.41-next.0",
39
- "@difizen/libro-core": "^0.2.41-next.0",
35
+ "@difizen/libro-code-editor": "^0.2.41-next.1",
36
+ "@difizen/libro-jupyter": "^0.2.41-next.1",
37
+ "@difizen/libro-rendermime": "^0.2.41-next.1",
38
+ "@difizen/libro-common": "^0.2.41-next.1",
39
+ "@difizen/libro-core": "^0.2.41-next.1",
40
40
  "@ant-design/icons": "^5.1.0",
41
41
  "@difizen/mana-l10n": "latest",
42
42
  "@difizen/mana-app": "latest",
@@ -3,7 +3,7 @@ import { singleton } from '@difizen/mana-app';
3
3
  @singleton()
4
4
  export class PromptScript {
5
5
  public readonly getChatObjects: string = `from libro_ai import chat_object_manager
6
- chat_object_manager.dump_list_json()`;
6
+ chat_object_manager.dump_kernel_list_json()`;
7
7
  public readonly getChatRecoreds: string = `from libro_ai import chat_record_provider
8
8
  chat_record_provider.get_records()`;
9
9
  }