feat: Reorganize eval framework with clean mock data structure#44
Merged
boringdata merged 1 commit intomainfrom Nov 25, 2025
Merged
feat: Reorganize eval framework with clean mock data structure#44boringdata merged 1 commit intomainfrom
boringdata merged 1 commit intomainfrom
Conversation
Reorganize the evaluation framework with a cleaner, more logical structure: ## Mock Data Reorganization - **New structure**: `data/documents/`, `data/db/`, `data/integrations/` - **Moved websites**: All website content now in `data/documents/` (acme-corp, acme-docs, competitor-co) - **Moved integrations**: research, analytics, cms → `data/integrations/` - **Added database dumps**: JSONL format in `data/db/acme-docs/` (loads in <1s vs 30-60s for fetch+index) - **Consolidated tools**: All generators and loaders in `generators/` directory ## Scenario Organization - Split scenarios into logical files: - `scenarios_kurt_setup.yaml` - Initialization tests - `scenarios_content_ingestion.yaml` - Fetch and indexing tests - `scenarios_retrieval.yaml` - Answer command tests with correctness metrics - `scenarios_answer.yaml` - Legacy answer scenarios ## Documentation - **Consolidated README**: Single comprehensive `eval/README.md` (370 lines) - Removed redundant markdown files (TESTING_SUMMARY, DSPY_OPTIMIZER, CONFIG_AUDIT, etc.) - Updated all paths and examples to reflect new structure ## Cleanup - Removed root-level test files (test_conversation_completion.py, test_workflow_follow.py, etc.) - Removed duplicate markdown documentation - Cleaned up scenarios_idea.md ## Database Fixtures - **ACME Docs dump**: 4 documents, 15 entities, 19 links, 11 relationships - **JSONL format**: Human-readable, git-friendly, streamable - **Fast loading**: < 1 second vs 30-60s for full fetch+index (50-60x faster!) - **Tools**: `load_dump.py` and `create_dump.py` for managing dumps 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Reorganize the evaluation framework with a cleaner, more logical directory structure and improved tooling for faster test setup.
Key Changes
📁 Mock Data Reorganization
data/documents/,data/db/,data/integrations/data/documents/(acme-corp, acme-docs, competitor-co)data/integrations/generators/directory🗂️ Scenario Organization
Split monolithic scenarios file into logical, focused files:
scenarios_kurt_setup.yaml- Initialization and configuration testsscenarios_content_ingestion.yaml- Fetching and indexing testsscenarios_retrieval.yaml- Answer command tests with correctness metricsscenarios_answer.yaml- Legacy answer scenarios📊 Database Fixtures (Major Performance Improvement)
load_dump.py- Import JSONL dumps into Kurt projectscreate_dump.py- Export Kurt projects to JSONL dumps📝 Documentation
eval/README.md(370 lines) with all information🧹 Cleanup
Impact
Before:
After:
Benefits
Testing
All existing eval scenarios continue to work with updated paths:
Quick database loading:
🤖 Generated with Claude Code