Interface ISeparated<Model>

Collection of separated parameters.

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

Type Parameters

  • Model extends ILlmSchema.Model

Properties

Properties

human: null | ModelParameters[Model]

Parameters that would be composed by the human.

llm: null | ModelParameters[Model]

Parameters that would be composed by the LLM.