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

com.simiacryptus.skyenet.apps.general.parsers.ParsingModel.kt Maven / Gradle / Ivy

There is a newer version: 1.2.21
Show newest version
package com.simiacryptus.skyenet.apps.general.parsers

import com.simiacryptus.jopenai.API

interface ParsingModel {
    fun merge(runningDocument: DocumentData, newData: DocumentData): DocumentData
    fun getParser(api: API): (String) -> DocumentData
    fun newDocument(): DocumentData

    interface DocumentData
    companion object {
        private val log = org.slf4j.LoggerFactory.getLogger(ParsingModel::class.java)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy