recursive-llm-ts 4.7.0 → 4.9.0

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/go/rlm/types.go CHANGED
@@ -6,10 +6,13 @@ import (
6
6
  )
7
7
 
8
8
  type RLMStats struct {
9
- LlmCalls int `json:"llm_calls"`
10
- Iterations int `json:"iterations"`
11
- Depth int `json:"depth"`
12
- ParsingRetries int `json:"parsing_retries,omitempty"`
9
+ LlmCalls int `json:"llm_calls"`
10
+ Iterations int `json:"iterations"`
11
+ Depth int `json:"depth"`
12
+ ParsingRetries int `json:"parsing_retries,omitempty"`
13
+ TotalTokens int `json:"total_tokens,omitempty"`
14
+ PromptTokens int `json:"prompt_tokens,omitempty"`
15
+ CompletionTokens int `json:"completion_tokens,omitempty"`
13
16
  }
14
17
 
15
18
  type JSONSchema struct {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recursive-llm-ts",
3
- "version": "4.7.0",
3
+ "version": "4.9.0",
4
4
  "description": "TypeScript bridge for recursive-llm: Recursive Language Models for unbounded context processing with structured outputs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -48,12 +48,12 @@
48
48
  "license": "MIT",
49
49
  "repository": {
50
50
  "type": "git",
51
- "url": "git+https://github.com/jbeck018/recursive-llm-ts.git"
51
+ "url": "git+https://github.com/howlerops/recursive-llm-ts.git"
52
52
  },
53
53
  "bugs": {
54
- "url": "https://github.com/jbeck018/recursive-llm-ts/issues"
54
+ "url": "https://github.com/howlerops/recursive-llm-ts/issues"
55
55
  },
56
- "homepage": "https://github.com/jbeck018/recursive-llm-ts#readme",
56
+ "homepage": "https://github.com/howlerops/recursive-llm-ts#readme",
57
57
  "dependencies": {
58
58
  "zod": "^4.3.6"
59
59
  },