agentnet 0.0.5 → 0.0.6

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": "agentnet",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "type": "module",
5
5
  "description": "Agent library used by Smartness",
6
6
  "main": "src/index.js",
package/src/llm/base.js CHANGED
@@ -83,7 +83,7 @@ export class BaseLLM {
83
83
  * @returns {Promise<any>} Result of the tool execution
84
84
  */
85
85
  async executeToolCall(toolCall, name, args, state, toolsAndHandoffsMap) {
86
- logger.debug(`Executing tool from ${this.type}`, {
86
+ logger.info(`Executing tool from ${this.type}`, {
87
87
  toolName: name,
88
88
  argsPreview: JSON.stringify(args).substring(0, 100)
89
89
  });
@@ -191,12 +191,10 @@ export function memoryStore () {
191
191
  connect: async function () {},
192
192
  disconnect: async function () {},
193
193
  set: async function (key, value) {
194
- console.log('Setting state', key, value)
195
194
  state[key] = value
196
195
  return state[key]
197
196
  },
198
197
  get: async function (key) {
199
- console.log('Getting state', key)
200
198
  return state[key] || null
201
199
  }
202
200
  }