bios-sdk 0.1.0-dev.3 → 0.1.0-dev.6
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.ts +5 -2
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -30,8 +30,11 @@ import { Training } from './resources/training.js';
|
|
|
30
30
|
import { Wallet } from './resources/wallet.js';
|
|
31
31
|
import { GPU } from './resources/gpu.js';
|
|
32
32
|
import { Inference } from './resources/inference.js';
|
|
33
|
-
/**
|
|
34
|
-
|
|
33
|
+
/**
|
|
34
|
+
* SDK version. Sent as part of the User-Agent header.
|
|
35
|
+
* Must match package.json "version" -- enforced by a contract test.
|
|
36
|
+
*/
|
|
37
|
+
export declare const VERSION = "0.1.0";
|
|
35
38
|
export declare class BiOS {
|
|
36
39
|
/** Search models, fetch configs, check adapter compatibility. */
|
|
37
40
|
readonly models: Models;
|
package/dist/index.js
CHANGED
|
@@ -30,8 +30,11 @@ import { Training } from './resources/training.js';
|
|
|
30
30
|
import { Wallet } from './resources/wallet.js';
|
|
31
31
|
import { GPU } from './resources/gpu.js';
|
|
32
32
|
import { Inference } from './resources/inference.js';
|
|
33
|
-
/**
|
|
34
|
-
|
|
33
|
+
/**
|
|
34
|
+
* SDK version. Sent as part of the User-Agent header.
|
|
35
|
+
* Must match package.json "version" -- enforced by a contract test.
|
|
36
|
+
*/
|
|
37
|
+
export const VERSION = '0.1.0';
|
|
35
38
|
export class BiOS {
|
|
36
39
|
/** Search models, fetch configs, check adapter compatibility. */
|
|
37
40
|
models;
|