com.justai.jaicf.activator.caila.CailaNLUSettings.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of caila Show documentation
Show all versions of caila Show documentation
JAICF-Kotlin Caila NLU Activator Adapter. Provides intent recognition and named entity extraction.
package com.justai.jaicf.activator.caila
import com.justai.jaicf.activator.caila.slotfilling.CailaSlotFillingSettings
data class CailaNLUSettings(
val accessToken: String,
val confidenceThreshold: Double = 0.2,
val cailaSlotFillingSettings: CailaSlotFillingSettings = CailaSlotFillingSettings.DEFAULT,
val classifierNBest: Int = 5,
val cailaUrl: String = "$DEFAULT_CAILA_URL/api/caila/p"
)
internal const val DEFAULT_CAILA_URL = "https://app.jaicp.com/cailapub"
© 2015 - 2025 Weber Informatics LLC | Privacy Policy