Answer logging addition - #5
Merged
Merged
Conversation
PR Change LogChanged Files SummaryOverall: 7 files changed, 647 insertions(+), 11 deletions(-) Files Changed
Changes by Directory
Dependency ChangesWarningsNo large file changes detected. Updated: 2026-02-11T18:28:23.599Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a comprehensive set of improvements to the repository's automation and documentation. The most significant additions are the introduction of GitHub Actions workflows for CI, code quality, dependency review, PR labeling, stale issue management, and PR change logging. Additionally, the documentation is expanded to cover new qualitative answer logging features, including usage examples and data formats.
Automation and CI/CD enhancements:
.github/workflows/ci.ymlto run linting, formatting, type checks, and tests for both the main project and the DocGPT subproject across multiple Python versions..github/workflows/codeql.ymlfor automated CodeQL security analysis on pushes, pull requests, and a weekly schedule..github/workflows/dependency-review.ymlto review dependencies on pull requests, fail for high-severity vulnerabilities, and comment summaries in PRs..github/workflows/pr-changelog.ymlto automatically generate and update a PR change log comment summarizing file changes, stats, dependency diffs, and warnings for large changes..github/workflows/auto-label.ymland.github/labeler.ymlfor auto-labeling PRs based on changed files and PR size, improving triage and review efficiency. [1] [2].github/workflows/stale.ymlto automatically mark and close stale issues and PRs after configurable periods of inactivity.Documentation and qualitative logging improvements:
README.mdto document qualitative answer logging features, including side-by-side comparison of RAG and direct LLM answers, structured output formats (CSV/JSON), CLI usage, and example data formats. [1] [2] [3] [4] [5] [6] [7]New features and file additions:
rag_evaluation/qualitative_logger.pymodule for qualitative logging of answers, referenced in the updated project structure in the documentation.These changes collectively modernize the repository with robust automation, improve code quality and security, and provide clear guidance for qualitative evaluation workflows.
Automation & CI/CD:
.github/workflows/ci.yml)..github/workflows/codeql.yml,.github/workflows/dependency-review.yml,.github/workflows/stale.yml,.github/workflows/pr-changelog.yml). [1] [2] [3] [4].github/workflows/auto-label.yml,.github/labeler.yml). [1] [2]Documentation:
README.mdwith detailed qualitative answer logging instructions, CLI usage, new data formats, and updated example references. [1] [2] [3] [4] [5] [6] [7]New Features:
rag_evaluation/qualitative_logger.py) and documented its usage in the project structure.