toolcall 0.0.1 → 0.0.2

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 +13 -0
  2. package/package.json +10 -2
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # toolcall
2
+
3
+ LLM tool calling utilities.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install toolcall
9
+ ```
10
+
11
+ ## License
12
+
13
+ MIT
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "toolcall",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "LLM tool calling utilities",
5
5
  "main": "index.js",
6
6
  "keywords": ["toolcall", "function-calling", "ai", "llm", "agents"],
7
7
  "author": "Yi Min Yang (https://www.yiminyang.dev)",
8
- "license": "MIT"
8
+ "license": "MIT",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/sceiler/toolcall.git"
12
+ },
13
+ "homepage": "https://github.com/sceiler/toolcall#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/sceiler/toolcall/issues"
16
+ }
9
17
  }