Skip to content

Clean up part 1 - #23

Merged
shivangi221b merged 7 commits into
mainfrom
shivangi_cleanup_2
Feb 17, 2026
Merged

Clean up part 1#23
shivangi221b merged 7 commits into
mainfrom
shivangi_cleanup_2

Conversation

@shivangi221b

@shivangi221b shivangi221b commented Feb 17, 2026

Copy link
Copy Markdown
Collaborator

Repository cleanup: consolidate docs under docs/, remove unused scripts and experiments, and drop orphaned source and test code. Control panel UI is unchanged and working.

  • Moved and merged duplicate/overlapping docs into docs/: one place for setup, finetuning, GCP, WANDB, control panel, quick reference, and LLM integration.
  • Removed redundant root and duplicate docs/ files (e.g. multiple finetuning/WANDB/control panel guides, WEEK1–4 deliverables and quick refs, QUICK_START_DATA_MANAGEMENT, long GCP/FINETUNING_ORCHESTRATION/WANDB_SWEEPS guides).
  • Updated README.md and docs/SETUP_INSTRUCTIONS.md to point to the consolidated docs.
  • Removed unused or doc-only scripts: deploy_complete_system, deploy_finetuning_to_gcp, deploy_to_gcp, monitor_gcp_costs, quick_setup.sh, setup_environment, setup_path.sh, verify_setup; and scripts/INSTALL_GCLOUD.md (content folded into docs/GCP.md)
  • Removed experiments that were unused or only referenced from deleted docs
  • Removed test runners that only wrapped pytest
  • Removed packages and modules that became unused after the above cleanups
  • UI and main workflows verified working.

Copilot AI review requested due to automatic review settings February 17, 2026 02:34
@shivangi221b shivangi221b linked an issue Feb 17, 2026 that may be closed by this pull request

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Repository cleanup focused on consolidating documentation under docs/ and removing unused scripts/experiments and orphaned source modules, while keeping the control panel UI and main workflows unchanged.

Changes:

  • Consolidated/added core docs in docs/ (setup, GCP, fine-tuning, W&B, control panel, quick reference, LLM integration) and updated references.
  • Removed unused/duplicative experiment scripts, evaluation helpers, setup/deploy scripts, and legacy “Week X” deliverables/quick refs.
  • Dropped unused source modules/packages tied to removed docs/experiments.

Reviewed changes

Copilot reviewed 69 out of 80 changed files in this pull request and generated 9 comments.

Show a summary per file
File Description
src/integration/ablation_studies.py Removed ablation framework module as part of cleanup.
src/integration/init.py Removed integration package exports/metadata.
src/data/augmentation.py Removed noise augmentation module (unused).
src/agent_evaluation/false_positive_detector.py Removed false-positive detection utilities (unused).
src/agent_evaluation/agent_evaluator.py Removed agent evaluation module (unused).
src/agent_evaluation/agent_benchmark.py Removed benchmarking module (unused).
src/agent_evaluation/ablation_tester.py Removed ablation tester module (unused).
src/agent_evaluation/init.py Removed agent evaluation package exports.
scripts/verify_setup.py Removed setup verification script (unused/obsolete per cleanup).
scripts/setup_path.sh Removed PATH helper script (obsolete).
scripts/setup_environment.py Removed environment bootstrap script (obsolete).
scripts/quick_setup.sh Removed quick GCP prerequisite helper (obsolete).
scripts/monitor_gcp_costs.py Removed GCP cost monitoring script (obsolete).
scripts/deploy_to_gcp.py Removed GCP deployment script (obsolete).
scripts/INSTALL_GCLOUD.md Removed gcloud install doc (folded into docs/GCP.md).
experiments/visualize_evaluation_results.py Removed evaluation visualization script (unused).
experiments/test_api.py Removed ad-hoc API test script (unused).
experiments/test_adaptive_scheduler.py Removed ad-hoc scheduler test script (unused).
experiments/sample_outputs/test_baseline_1.txt Removed sample output artifact.
experiments/sample_outputs/evaluate_models_1.txt Removed sample output artifact.
experiments/sample_outputs/api_response.txt Removed sample output artifact.
experiments/run_hyperparameter_sweep.py Removed sweep runner script (superseded by docs/other tooling).
experiments/run_agent_evaluation.py Removed agent evaluation runner (unused).
experiments/example_usage.py Removed example usage script (unused).
experiments/evaluate_models.py Removed model comparison script (unused).
experiments/demo_wandb_tracking.py Removed W&B demo script (unused).
experiments/create_test_evaluation.py Removed test dataset creation script (unused).
experiments/comprehensive_test_suite.py Removed comprehensive test suite script (unused).
docs/WEEK2_DELIVERABLES_REPORT.md Removed legacy Week 2 report (consolidated elsewhere).
docs/WEEK1_DELIVERABLES_REPORT.md Removed legacy Week 1 report (consolidated elsewhere).
docs/WANDB.md Added consolidated W&B integration doc under docs/.
docs/SETUP_INSTRUCTIONS.md Updated links to consolidated docs under docs/.
docs/QUICK_START_DATA_MANAGEMENT.md Removed redundant quick start doc (content consolidated).
docs/QUICK_REFERENCE.md Added consolidated command quick reference under docs/.
docs/LLM_INTEGRATION.md Added consolidated LLM integration doc under docs/.
docs/GCP_SETUP_GUIDE.md Removed redundant GCP guide (content consolidated into docs/GCP.md).
docs/GCP.md Added consolidated GCP setup/deployment doc under docs/.
docs/FINETUNING.md Added consolidated fine-tuning doc under docs/.
docs/EVALUATION_SUMMARY.md Updated path/reference note for summary doc.
docs/DATA_MANAGEMENT_SYSTEM.md Added a new quick-start section at top.
docs/CONTROL_PANEL.md Added consolidated control panel guide under docs/.
data/metadata/adaptive_stt.code-workspace Added VS Code workspace file.
WEEK4_QUICK_REFERENCE.md Removed legacy Week 4 quick reference (superseded).
WEEK3_QUICK_REFERENCE.md Removed legacy Week 3 quick reference (superseded).
WANDB_SWEEPS_BENEFITS.md Removed redundant W&B sweeps benefits doc (superseded).
WANDB_INTEGRATION_SUMMARY.md Removed redundant W&B integration summary (superseded).
README.md Updated docs section references to consolidated docs under docs/.
QUICK_REFERENCE.md Removed root quick reference (moved to docs/QUICK_REFERENCE.md).
LLAMA_INTEGRATION_SUMMARY.md Removed legacy integration summary (superseded).
FINETUNING_QUICK_START.md Removed redundant quick start (superseded by docs/FINETUNING.md).
FINETUNING_GUIDE.md Removed redundant fine-tuning guide (superseded by docs/FINETUNING.md).
CONTROL_PANEL_GUIDE.md Removed root control panel guide (superseded by docs/CONTROL_PANEL.md).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread docs/QUICK_REFERENCE.md
Comment thread docs/QUICK_REFERENCE.md
Comment thread docs/QUICK_REFERENCE.md
Comment thread docs/GCP.md
Comment thread docs/GCP.md
Comment thread docs/FINETUNING.md
Comment thread docs/WANDB.md
Comment thread docs/WANDB.md
Comment thread data/metadata/adaptive_stt.code-workspace
shivangi221b and others added 2 commits February 16, 2026 21:47
…EFERENCE at root, no extra docs, no agent_evaluator)

Co-authored-by: Cursor <cursoragent@cursor.com>
@GAInTheHouse

Copy link
Copy Markdown
Owner

Removing issue #18 based on offline discussion.

@shivangi221b
shivangi221b merged commit 61b542d into main Feb 17, 2026
4 checks passed
@GAInTheHouse
GAInTheHouse deleted the shivangi_cleanup_2 branch February 23, 2026 19:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants