com.simiacryptus.openai.ModelMaxException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joe-penai Show documentation
Show all versions of joe-penai Show documentation
A Java client for OpenAI's API
package com.simiacryptus.openai
import java.io.IOException
class ModelMaxException(
val modelMax: Int,
val request: Int,
val messages: Int,
val completion: Int
) : IOException("Model max exceeded: $modelMax, request: $request, messages: $messages, completion: $completion")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy