@knowlearning/agents 0.9.98 → 0.9.100

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.
@@ -232,6 +232,7 @@ export default function Agent({ Connection, domain, token, uuid, fetch, applyPat
232
232
  environment,
233
233
  login,
234
234
  logout,
235
+ log,
235
236
  create,
236
237
  state,
237
238
  watch,
package/deno.js CHANGED
@@ -33,7 +33,7 @@ const agent = new Agent({
33
33
  value = structuredClone([...arguments])
34
34
  }
35
35
  catch (error) {
36
- value = `ERROR: error occurred logging arguments ${arguments}`
36
+ value = `ERROR: error occurred logging arguments ${error} ${arguments}`
37
37
  }
38
38
 
39
39
  agent.interact('sessions', [{ op: 'add', path: ['active', session, 'log'], value }], false, false)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowlearning/agents",
3
- "version": "0.9.98",
3
+ "version": "0.9.100",
4
4
  "description": "API for embedding applications in KnowLearning systems.",
5
5
  "main": "node.js",
6
6
  "browser": "browser.js",