llm-tool-parser 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.
package/lib/index.d.ts CHANGED
@@ -1 +1,3 @@
1
1
  export * from './parser';
2
+ import { parseLlmToolCalls } from './parser';
3
+ export default parseLlmToolCalls;
package/lib/index.js CHANGED
@@ -15,3 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./parser"), exports);
18
+ const parser_1 = require("./parser");
19
+ exports.default = parser_1.parseLlmToolCalls;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-tool-parser",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Universal LLM tool call extractor that normalizes messy outputs into a unified ToolCall format.",
5
5
  "repository": {
6
6
  "type": "git",