fn get_successful_responses()

in src/results.rs [230:235]


    fn get_successful_responses(&self) -> Vec<&TextGenerationAggregatedResponse> {
        self.aggregated_responses
            .iter()
            .filter(|response| !response.failed)
            .collect()
    }