@difizen/libro-prompt-cell 0.2.42 → 0.2.44

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.
@@ -1 +1 @@
1
- {"version":3,"file":"prompt-cell-script.d.ts","sourceRoot":"","sources":["../src/prompt-cell-script.ts"],"names":[],"mappings":"AAEA,qBACa,YAAY;IACvB,SAAgB,cAAc,EAAE,MAAM,CACF;IACpC,SAAgB,eAAe,EAAE,MAAM,CACL;CACnC"}
1
+ {"version":3,"file":"prompt-cell-script.d.ts","sourceRoot":"","sources":["../src/prompt-cell-script.ts"],"names":[],"mappings":"AAEA,qBACa,YAAY;IACvB,SAAgB,cAAc,EAAE,MAAM,CACK;IAC3C,SAAgB,eAAe,EAAE,MAAM,CACL;CACnC"}
@@ -8,6 +8,6 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
8
8
  import { singleton } from '@difizen/mana-app';
9
9
  export var PromptScript = (_dec = singleton(), _dec(_class = /*#__PURE__*/_createClass(function PromptScript() {
10
10
  _classCallCheck(this, PromptScript);
11
- this.getChatObjects = "from libro_ai import chat_object_manager\nchat_object_manager.dump_list_json()";
11
+ this.getChatObjects = "from libro_ai import chat_object_manager\nchat_object_manager.dump_kernel_list_json()";
12
12
  this.getChatRecoreds = "from libro_ai import chat_record_provider\nchat_record_provider.get_records()";
13
13
  })) || _class);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-prompt-cell",
3
- "version": "0.2.42",
3
+ "version": "0.2.44",
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.42",
36
- "@difizen/libro-jupyter": "^0.2.42",
37
- "@difizen/libro-rendermime": "^0.2.42",
38
- "@difizen/libro-common": "^0.2.42",
39
- "@difizen/libro-core": "^0.2.42",
35
+ "@difizen/libro-code-editor": "^0.2.44",
36
+ "@difizen/libro-jupyter": "^0.2.44",
37
+ "@difizen/libro-rendermime": "^0.2.44",
38
+ "@difizen/libro-common": "^0.2.44",
39
+ "@difizen/libro-core": "^0.2.44",
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
  }