All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.simiacryptus.jopenai.models.CompletionModels.kt Maven / Gradle / Ivy

There is a newer version: 1.1.12
Show newest version
package com.simiacryptus.jopenai.models

import com.simiacryptus.jopenai.ApiModel.Usage

enum class CompletionModels(
    override val modelName: String,
    override val maxTokens: Int,
    private val tokenPricePerK: Double,
) : OpenAITextModel {
    DaVinci("text-davinci-003", 2049, 0.002);
    override fun pricing(usage: Usage) = usage.prompt_tokens * tokenPricePerK / 1000.0
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy