runbios-sdk 0.2.1-dev.62 → 0.2.1-dev.65

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 CHANGED
@@ -34,7 +34,7 @@ import { Inference } from './resources/inference.js';
34
34
  * SDK version. Sent as part of the User-Agent header.
35
35
  * Must match package.json "version" -- enforced by a contract test.
36
36
  */
37
- export declare const VERSION = "0.2.1-dev.62";
37
+ export declare const VERSION = "0.2.1-dev.65";
38
38
  export declare class RunBiOS {
39
39
  /** Search models, fetch configs, check adapter compatibility. */
40
40
  readonly models: Models;
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ import { Inference } from './resources/inference.js';
34
34
  * SDK version. Sent as part of the User-Agent header.
35
35
  * Must match package.json "version" -- enforced by a contract test.
36
36
  */
37
- export const VERSION = '0.2.1-dev.62';
37
+ export const VERSION = '0.2.1-dev.65';
38
38
  export class RunBiOS {
39
39
  /** Search models, fetch configs, check adapter compatibility. */
40
40
  models;
package/dist/types.d.ts CHANGED
@@ -204,8 +204,11 @@ export interface ModelDetailResponse {
204
204
  model: Model;
205
205
  /** Whether the file/config viewer applies -- public models only. */
206
206
  files_viewable?: boolean;
207
- /** Cached model card; present only for public models that have one. */
208
- readme_md?: string;
207
+ /**
208
+ * The curated model card (markdown); present only for public models whose
209
+ * card has been curated. The raw upstream README is never served.
210
+ */
211
+ card_md?: string;
209
212
  /**
210
213
  * The revision this card and file list describe -- the one hosted in our
211
214
  * mirror. Public models only, and only once something is mirrored.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "runbios-sdk",
3
- "version": "0.2.1-dev.62",
3
+ "version": "0.2.1-dev.65",
4
4
  "description": "Official TypeScript SDK for the Run BiOS training and deployment platform API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",