def get_config()

in src/smjsindustry/finance/processor_config.py [0:0]


    def get_config(self) -> Dict[str, Union[str, int, float, Set[str]]]:
        """Returns the config to be passed to a SageMaker JumpStart Industry Summarizer instance."""
        return {
            "processor_type": self.processor_type,
            "summary_size": self.summary_size,
            "summary_percentage": self.summary_percentage,
            "max_tokens": self.max_tokens,
            "cutoff": self.cutoff,
            "vocabulary": self.vocabulary,
        }