RagFileTransformationConfig.fromJson constructor
Implementation
factory RagFileTransformationConfig.fromJson(Map<String, dynamic> json) {
return RagFileTransformationConfig(
ragFileChunkingConfig: decode(
json['ragFileChunkingConfig'],
RagFileChunkingConfig.fromJson,
),
);
}