orkajs 3.0.2 → 3.1.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/dist/index.cjs CHANGED
@@ -20,6 +20,7 @@ var evaluation = require('@orka-js/evaluation');
20
20
  var observability = require('@orka-js/observability');
21
21
  var prompts = require('@orka-js/prompts');
22
22
  var memoryStore = require('@orka-js/memory-store');
23
+ var ocr = require('@orka-js/ocr');
23
24
 
24
25
 
25
26
 
@@ -133,5 +134,11 @@ Object.keys(memoryStore).forEach(function (k) {
133
134
  get: function () { return memoryStore[k]; }
134
135
  });
135
136
  });
137
+ Object.keys(ocr).forEach(function (k) {
138
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
139
+ enumerable: true,
140
+ get: function () { return ocr[k]; }
141
+ });
142
+ });
136
143
  //# sourceMappingURL=index.cjs.map
137
144
  //# sourceMappingURL=index.cjs.map
package/dist/index.d.cts CHANGED
@@ -18,3 +18,4 @@ export * from '@orka-js/evaluation';
18
18
  export * from '@orka-js/observability';
19
19
  export { FilePromptPersistence, PromptChange, PromptDiff, PromptPersistence, PromptRegistry, PromptRegistryConfig, PromptRenderOptions, PromptTemplate as PromptVersionTemplate } from '@orka-js/prompts';
20
20
  export * from '@orka-js/memory-store';
21
+ export * from '@orka-js/ocr';
package/dist/index.d.ts CHANGED
@@ -18,3 +18,4 @@ export * from '@orka-js/evaluation';
18
18
  export * from '@orka-js/observability';
19
19
  export { FilePromptPersistence, PromptChange, PromptDiff, PromptPersistence, PromptRegistry, PromptRegistryConfig, PromptRenderOptions, PromptTemplate as PromptVersionTemplate } from '@orka-js/prompts';
20
20
  export * from '@orka-js/memory-store';
21
+ export * from '@orka-js/ocr';
package/dist/index.js CHANGED
@@ -18,5 +18,6 @@ export * from '@orka-js/evaluation';
18
18
  export * from '@orka-js/observability';
19
19
  export { FilePromptPersistence, PromptRegistry } from '@orka-js/prompts';
20
20
  export * from '@orka-js/memory-store';
21
+ export * from '@orka-js/ocr';
21
22
  //# sourceMappingURL=index.js.map
22
23
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orkajs",
3
- "version": "3.0.2",
3
+ "version": "3.1.0",
4
4
  "description": "OrkaJS - TypeScript framework for building production-ready LLM systems",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -43,26 +43,27 @@
43
43
  "node": ">=18.0.0"
44
44
  },
45
45
  "dependencies": {
46
- "@orka-js/core": "1.0.0",
47
- "@orka-js/openai": "1.0.0",
48
- "@orka-js/anthropic": "1.0.0",
49
- "@orka-js/mistral": "1.0.0",
50
- "@orka-js/ollama": "1.0.0",
51
- "@orka-js/pinecone": "1.0.0",
52
- "@orka-js/memory": "1.0.0",
53
- "@orka-js/qdrant": "1.0.0",
54
- "@orka-js/chroma": "1.0.0",
55
- "@orka-js/agent": "1.0.0",
56
- "@orka-js/cache": "1.0.0",
57
- "@orka-js/tools": "1.0.0",
58
- "@orka-js/workflow": "1.0.0",
59
- "@orka-js/graph": "1.0.0",
60
- "@orka-js/orchestration": "1.0.0",
61
- "@orka-js/evaluation": "1.0.0",
62
- "@orka-js/observability": "1.0.0",
63
- "@orka-js/prompts": "1.0.0",
64
- "@orka-js/memory-store": "1.0.0",
65
- "@orka-js/resilience": "1.0.0"
46
+ "@orka-js/ollama": "1.0.1",
47
+ "@orka-js/openai": "1.0.1",
48
+ "@orka-js/core": "1.1.0",
49
+ "@orka-js/anthropic": "1.0.1",
50
+ "@orka-js/qdrant": "1.0.1",
51
+ "@orka-js/chroma": "1.0.1",
52
+ "@orka-js/memory": "1.0.1",
53
+ "@orka-js/mistral": "1.0.1",
54
+ "@orka-js/resilience": "1.0.1",
55
+ "@orka-js/pinecone": "1.0.1",
56
+ "@orka-js/workflow": "1.0.1",
57
+ "@orka-js/agent": "1.0.1",
58
+ "@orka-js/tools": "1.0.1",
59
+ "@orka-js/cache": "1.0.1",
60
+ "@orka-js/evaluation": "1.0.1",
61
+ "@orka-js/graph": "1.0.1",
62
+ "@orka-js/memory-store": "1.0.1",
63
+ "@orka-js/prompts": "1.0.1",
64
+ "@orka-js/observability": "1.0.1",
65
+ "@orka-js/ocr": "1.1.0",
66
+ "@orka-js/orchestration": "1.0.1"
66
67
  },
67
68
  "devDependencies": {
68
69
  "tsup": "^8.0.1",