thinkwell 0.1.3 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,8 +26,8 @@ try {
26
26
  const greeting: Greeting = await agent
27
27
  .think(GreetingSchema)
28
28
  .text(`
29
- Use the current_time tool to get the current time, and create a friendly
30
- greeting message appropriate for that time of day.
29
+ Use the current_time tool to get the current time, and create a
30
+ friendly greeting message appropriate for that time of day.
31
31
  `)
32
32
 
33
33
  .tool(
@@ -37,7 +37,7 @@ try {
37
37
  const now = new Date();
38
38
  return {
39
39
  timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone,
40
- time: now.toLocaleTimeString,
40
+ time: now.toLocaleTimeString(),
41
41
  date: now.toLocaleDateString(),
42
42
  };
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thinkwell",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "TypeScript library for blending deterministic code with LLM-powered reasoning",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",