ChatConfig

data class ChatConfig(val confirmGoals: Boolean = true, val bindConversation: Boolean = false, val multiGoal: Boolean = false, val model: String = OpenAiModels.GPT_41_MINI, val temperature: Double? = null)

Configuration for the chat session

Parameters

confirmGoals

Whether to confirm goals with the user before proceeding

bindConversation

Whether to bind the conversation to the chat session

Constructors

Link copied to clipboard
constructor(confirmGoals: Boolean = true, bindConversation: Boolean = false, multiGoal: Boolean = false, model: String = OpenAiModels.GPT_41_MINI, temperature: Double? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val confirmGoals: Boolean = true
Link copied to clipboard
val llm: <Error class: unknown class>

Options for the LLM used in the chat session

Link copied to clipboard
Link copied to clipboard
val multiGoal: Boolean = false
Link copied to clipboard
val temperature: Double? = null