@voltx/ui 0.3.0 → 0.4.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/dist/index.d.mts CHANGED
@@ -35,6 +35,6 @@ interface UseAgentReturn {
35
35
  error: Error | null;
36
36
  }
37
37
  declare function useAgent(options: UseAgentOptions): UseAgentReturn;
38
- declare const VERSION = "0.3.0";
38
+ declare const VERSION = "0.4.2";
39
39
 
40
40
  export { type ChatMessage, type UseAgentOptions, type UseAgentReturn, type UseChatOptions, type UseChatReturn, VERSION, useAgent, useChat };
package/dist/index.d.ts CHANGED
@@ -35,6 +35,6 @@ interface UseAgentReturn {
35
35
  error: Error | null;
36
36
  }
37
37
  declare function useAgent(options: UseAgentOptions): UseAgentReturn;
38
- declare const VERSION = "0.3.0";
38
+ declare const VERSION = "0.4.2";
39
39
 
40
40
  export { type ChatMessage, type UseAgentOptions, type UseAgentReturn, type UseChatOptions, type UseChatReturn, VERSION, useAgent, useChat };
package/dist/index.js CHANGED
@@ -130,7 +130,7 @@ function useAgent(options) {
130
130
  );
131
131
  return { run, isRunning, error };
132
132
  }
133
- var VERSION = "0.3.0";
133
+ var VERSION = "0.4.2";
134
134
  // Annotate the CommonJS export names for ESM import in node:
135
135
  0 && (module.exports = {
136
136
  VERSION,
package/dist/index.mjs CHANGED
@@ -104,7 +104,7 @@ function useAgent(options) {
104
104
  );
105
105
  return { run, isRunning, error };
106
106
  }
107
- var VERSION = "0.3.0";
107
+ var VERSION = "0.4.2";
108
108
  export {
109
109
  VERSION,
110
110
  useAgent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voltx/ui",
3
- "version": "0.3.0",
3
+ "version": "0.4.2",
4
4
  "description": "VoltX React hooks — useRAG, useAgent, useChat, useCompletion",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",