clanka 0.0.12 → 0.0.13

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/dist/Agent.js CHANGED
@@ -302,7 +302,7 @@ Javascript output:
302
302
  };
303
303
  // oxlint-disable-next-line typescript/no-explicit-any
304
304
  const generateSystemMulti = (toolsDts) => {
305
- return `You can interact with the system by writing plain javascript code (no typescript) that will be executed for you.
305
+ return `From now on only response with plain javascript code (no typescript) which will be executed for you.
306
306
 
307
307
  - Use \`console.log\` to print any output you need.
308
308
  - Top level await is supported.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "clanka",
3
3
  "type": "module",
4
- "version": "0.0.12",
4
+ "version": "0.0.13",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/src/Agent.ts CHANGED
@@ -489,7 +489,7 @@ Javascript output:
489
489
 
490
490
  // oxlint-disable-next-line typescript/no-explicit-any
491
491
  const generateSystemMulti = (toolsDts: string) => {
492
- return `You can interact with the system by writing plain javascript code (no typescript) that will be executed for you.
492
+ return `From now on only response with plain javascript code (no typescript) which will be executed for you.
493
493
 
494
494
  - Use \`console.log\` to print any output you need.
495
495
  - Top level await is supported.