cc.unitmesh.rag.Text.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.document.parser.TextDocumentParser
import cc.unitmesh.rag.document.Document
import cc.unitmesh.rag.document.DocumentParser
import cc.unitmesh.rag.document.DocumentType
class Text(private val text: String) {
private val documentParser: DocumentParser = TextDocumentParser(DocumentType.TXT)
fun split(): List {
return documentParser.parse(text.byteInputStream())
}
}