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

commonMain.com.xebia.functional.xef.AIConfig.kt Maven / Gradle / Ivy

There is a newer version: 0.0.5-alpha.119
Show newest version
package com.xebia.functional.xef

import com.xebia.functional.openai.generated.api.Chat
import com.xebia.functional.openai.generated.api.OpenAI
import com.xebia.functional.openai.generated.model.CreateChatCompletionRequestModel
import com.xebia.functional.xef.conversation.Conversation

data class AIConfig(
  val tools: List> = emptyList(),
  val model: CreateChatCompletionRequestModel = CreateChatCompletionRequestModel.gpt_4o,
  val config: Config = Config(),
  val openAI: OpenAI = OpenAI(config, logRequests = false),
  val api: Chat = openAI.chat,
  val conversation: Conversation = Conversation()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy