@juspay/neurolink 1.1.0 → 1.2.1
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.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16,7 +16,8 @@ export { GoogleVertexAI, AmazonBedrock, OpenAI } from './providers/index.js';
|
|
|
16
16
|
export { PROVIDERS, AVAILABLE_PROVIDERS } from './providers/index.js';
|
|
17
17
|
// Utility exports
|
|
18
18
|
export { getBestProvider, getAvailableProviders, isValidProvider } from './utils/providerUtils.js';
|
|
19
|
-
// Main NeuroLink wrapper class
|
|
19
|
+
// Main NeuroLink wrapper class
|
|
20
|
+
export { NeuroLink } from './neurolink.js';
|
|
20
21
|
// Version
|
|
21
22
|
export const VERSION = '1.0.0';
|
|
22
23
|
/**
|
package/package.json
CHANGED