| 72 | : Response; |
| 73 | |
| 74 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected