commonMain.com.xebia.functional.openai.Config.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xef-openai-client Show documentation
Show all versions of xef-openai-client Show documentation
Building applications with LLMs through composability in Kotlin
The newest version!
package com.xebia.functional.openai
import kotlinx.serialization.json.Json
data class Config(
val baseUrl: String,
val token: String,
val org: String?,
val json: Json,
val streamingPrefix: String,
val streamingDelimiter: String
)