ReasoningEngineContextSpec.fromJson constructor

ReasoningEngineContextSpec.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ReasoningEngineContextSpec.fromJson(Map<String, dynamic> json) {
  return ReasoningEngineContextSpec(
    memoryBankConfig: decode(
      json['memoryBankConfig'],
      ReasoningEngineContextSpec_MemoryBankConfig.fromJson,
    ),
  );
}