Package-level declarations

Types

Link copied to clipboard
class MistralAIChatCompletionResponse(val id: String, val objectType: String, val model: String, val usage: MistralAIUsage, val created: Long, val choices: List<OpenAIChoice>) : OpenAIBaseLLMResponse

Mistral AI Chat Completion Response

Link copied to clipboard
class MistralAIChatCompletionStreamResponse(val choices: List<OpenAIStreamChoice>, val created: Long, val id: String, val model: String, val systemFingerprint: String? = null, val objectType: String, val usage: MistralAIUsage? = null) : OpenAIBaseLLMStreamResponse

Mistral AI Chat Completion Streaming Response

Link copied to clipboard
class MistralAIUsage(val promptTokens: Int, val completionTokens: Int, val totalTokens: Int, val promptAudioSeconds: Int? = null)