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

cc.unitmesh.prompt.validate.MarkdownCodeBlockValidator.kt Maven / Gradle / Ivy

Go to download

Chocolate Factory is a cutting-edge LLM toolkit designed to empower you in creating your very own AI assistant.

There is a newer version: 1.0.0
Show newest version
package cc.unitmesh.prompt.validate

import cc.unitmesh.cf.core.parser.MarkdownCode

class MarkdownCodeBlockValidator(override val input: String) : Validator {
    override fun validate(): Boolean {
        val input = MarkdownCode.parse(input)
        return input.text.isNotBlank()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy