18 lines
395 B
TypeScript
18 lines
395 B
TypeScript
// https://docs.mistral.ai/platform/endpoints/
|
|
export type MistralChatModelId =
|
|
| 'open-mistral-7b'
|
|
| 'open-mixtral-8x7b'
|
|
| 'mistral-small-latest'
|
|
| 'mistral-medium-latest'
|
|
| 'mistral-large-latest'
|
|
| (string & {});
|
|
|
|
export interface MistralChatSettings {
|
|
/**
|
|
* Whether to inject a safety prompt before all conversations.
|
|
*
|
|
* Default: false
|
|
*/
|
|
safePrompt?: boolean;
|
|
}
|