cc.unitmesh.prompt.template.PromptCompiler.kt Maven / Gradle / Ivy
package cc.unitmesh.prompt.template
interface PromptCompiler {
fun compile(templatePath: String, dataPath: String): String
fun compile(templatePath: String, dataPath: Map): String
}