symposium 0.10.11 → 0.11.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/Interface.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default class Interface {
2
- name;
2
+ static name;
3
3
 
4
4
  static async init(agent) {
5
5
  }
package/Thread.js CHANGED
@@ -5,7 +5,6 @@ export default class Thread {
5
5
  id;
6
6
  unique;
7
7
  agent;
8
- reply;
9
8
  messages = [];
10
9
  state = {};
11
10
  interface = null;
@@ -19,7 +18,7 @@ export default class Thread {
19
18
 
20
19
  clone(keepMessages = true) {
21
20
  let newThread = new Thread(this.id, this.interface, this.agent);
22
- newThread.reply = this.reply;
21
+ newThread.interface = this.interface;
23
22
  newThread.state = this.state;
24
23
  if (keepMessages)
25
24
  newThread.messages = [...this.messages];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "symposium",
4
- "version": "0.10.11",
4
+ "version": "0.11.1",
5
5
  "description": "Agents",
6
6
  "main": "index.js",
7
7
  "author": "Domenico Giambra",