janus.converter.aggregator#

Classes#

Aggregator

Parent class that converts code into something else.

Module Contents#

class janus.converter.aggregator.Aggregator(intermediate_converters, separator='\n==============\n', **kwargs)#

Bases: janus.converter.converter.Converter

Parent class that converts code into something else.

Children will determine what the code gets converted into. Whether that’s translated into another language, into pseudocode, requirements, documentation, etc., or converted into embeddings

Initialization Method :param intermediate_converters - list of converters to use: :param separator: separator string to partition different outputs before combination

Parameters: