ModelBuilderIfc

fun interface ModelBuilderIfc(source)

An interface representing a builder for creating Model instances.

This interface defines an abstract method that is responsible for constructing a Model object. It can be implemented to encapsulate the logic required to create specific types of model instances.

Functions

Link copied to clipboard
abstract fun build(modelConfiguration: Map<String, String>?): Model

Constructs a Model instance based on the provided configuration strings.