cc.unitmesh.rag.CodeDsl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rag-script Show documentation
Show all versions of rag-script Show documentation
Chocolate Factory is a cutting-edge LLM toolkit designed to empower you in creating your very own AI assistant.
The newest version!
package cc.unitmesh.rag
import cc.unitmesh.cf.code.CodeSplitter
/**
*
*/
class CodeDsl(file: String) {
val codeSplitter = CodeSplitter(file)
fun split(): List {
return listOf()
}
}