MCPcopy Index your code
hub / github.com/Bytez-com/docs / Details

Interface Details

sdk/javascript/src/interface/Model.ts:74–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72 : Response;
73
74export interface Details {
75 /** Model task - text generation, object detection, etc */
76 task: Task;
77 /** Model params (in billions) */
78 params: Number;
79 /** RAM required to run inference (in GB) */
80 ramRequired: Number;
81 /**
82 * Depending on RAM required, models are sized from `micro` models to `super` models.
83 *
84 */
85 meter:
86 | "micro"
87 | "xs"
88 | "sm"
89 | "md"
90 | "lg"
91 | "xl"
92 | "xxl"
93 | "super"
94 | "micro-lm"
95 | "xs-lm"
96 | "sm-lm"
97 | "md-lm"
98 | "lg-lm"
99 | "xl-lm"
100 | "xxl-lm"
101 | "super-lm";
102
103 /** The price per second to run the model */
104 meterPrice: string;
105}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected