Collection of separated parameters.

interface ISeparated<Model extends Model> {
    human: null | ModelParameters[Model];
    llm: ModelParameters[Model];
}

Type Parameters

Properties

Properties

human: null | ModelParameters[Model]

Parameters that would be composed by the human.

Parameters that would be composed by the LLM.

Even though no property exists in the LLM side, the llm property would have at least empty object type.