| Name |
Type |
Description |
Notes |
| name |
string |
Human readable name of the model |
[default to undefined] |
| key |
string |
Unique key for the model |
[default to undefined] |
| id |
string |
Identifier for the model, for use with third party providers |
[default to undefined] |
| icon |
string |
Icon for the model |
[optional] [default to undefined] |
| provider |
string |
Provider for the model |
[optional] [default to undefined] |
| params |
object |
|
[optional] [default to undefined] |
| customParams |
object |
|
[optional] [default to undefined] |
| tags |
Array<string> |
|
[optional] [default to undefined] |
| costPerInputToken |
number |
Cost per input token in USD |
[optional] [default to undefined] |
| costPerOutputToken |
number |
Cost per output token in USD |
[optional] [default to undefined] |
import { ModelConfigPost } from 'launchdarkly-api-typescript';
const instance: ModelConfigPost = {
name,
key,
id,
icon,
provider,
params,
customParams,
tags,
costPerInputToken,
costPerOutputToken,
};
[Back to Model list] [Back to API list] [Back to README]