### Install minitest-reporters-llm Gem Source: https://github.com/seuros/minitest-reporters-llm/blob/master/README.md Instructions for adding the 'minitest-reporters-llm' gem to your application's Gemfile for installation via Bundler, or installing it directly using the 'gem install' command. ```ruby gem 'minitest-reporters-llm' ``` -------------------------------- ### Configure Minitest Reporter for LLM Output Source: https://github.com/seuros/minitest-reporters-llm/blob/master/README.md Demonstrates how to integrate the LLMReporter into your Minitest setup, showing both default usage and configuration with various options like output format, file paths, and regression tracking. ```ruby # In test_helper.rb or wherever you configure minitest-reporters require 'minitest/reporters/llm' # Use compact format (default) Minitest::Reporters.use! [Minitest::Reporters::LLMReporter.new] # Or with options Minitest::Reporters.use! [ Minitest::Reporters::LLMReporter.new( format: :compact, # :compact or :verbose results_file: 'tmp/test_results.json', report_file: 'tmp/test_report.toml', track_regressions: true, # Track test status changes write_reports: true # Write JSON/TOML reports ) ] ``` -------------------------------- ### Set Environment Variables for Reporter File Paths Source: https://github.com/seuros/minitest-reporters-llm/blob/master/README.md Provides bash commands to override the default file paths used by the LLM reporter for storing results and TOML reports. ```bash # Override default file paths export LLM_REPORTER_RESULTS="custom/results.json" export LLM_REPORTER_TOML="custom/report.toml" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.