()
| 148 | } |
| 149 | |
| 150 | export function getNCodeManagedModelOptions(): Array<{ |
| 151 | value: string |
| 152 | label: string |
| 153 | description: string |
| 154 | descriptionForModel: string |
| 155 | }> { |
| 156 | return NCODE_MANAGED_MODEL_PROFILES.map(profile => ({ |
| 157 | value: profile.primaryAlias, |
| 158 | label: profile.label, |
| 159 | description: profile.description, |
| 160 | descriptionForModel: `${profile.description} (${profile.model})`, |
| 161 | })) |
| 162 | } |
| 163 | |
| 164 | export function getNCodeManagedModelBaseUrl( |
| 165 | model: string | undefined, |
no outgoing calls
no test coverage detected