fixed warning/errors when running .\scripts\build-documentation.ps1 #18
fixed warning/errors when running .\scripts\build-documentation.ps1 #18bmerkle wants to merge 8 commits intoAgentEvalHQ:mainfrom
Conversation
- updated docfx.json because some files need a resouce mapping one level up - Strategy doc links removed (ADR 014, 015, 016, extensibility.md), strategy/ directory doesn't exist in the repo - ci-cd-integration.md links removed (redteam.md, workflows.md) (redteam.md, workflows.md) File doesn't exist in the repo
| @@ -100,10 +100,4 @@ See `strategy/impl/` for detailed phase plans. | |||
|
|
|||
| ## References | |||
There was a problem hiding this comment.
Even though the broken links were removed from the References section, the ADR still points readers to strategy/impl/ earlier in the document. Since strategy/ isn’t in this repo, please remove/update that reference to avoid sending readers to a non-existent path.
| - **M3** — `DatasetTestCase` extended model + `ToTestCase()` adapter | ||
| - **M4** — `RunBatchAsync` on `MAFEvaluationHarness` accepting `DatasetTestCase` |
There was a problem hiding this comment.
These bullets contain mojibake (—) where an em dash (—) is likely intended. Please replace the garbled sequence so the ADR renders correctly.
|
@copilot apply changes based on the comments in this thread |
| **Date:** 2026-02-25 | ||
| **Decision Makers:** AgentEval Contributors | ||
| **Related:** [ADR-006](006-service-based-architecture-di.md), [Extensibility Strategy](../../strategy/AgentEval-Extensibility-Implementation-Review-and-Refinement.md), [Extensibility Guide](../extensibility.md) | ||
| **Related:** [ADR-006](006-service-based-architecture-di.md), [Extensibility Guide](../extensibility.md) |
There was a problem hiding this comment.
After removing the Strategy doc link from the Related section, the body still says "AgentEval's extensibility strategy (see strategy doc)". Please update that wording to reference an in-repo document (e.g., the Extensibility Guide) so readers don't look for a missing strategy doc.
| The full implementation plan covers specifically: | ||
|
|
||
| - **M3** — `DatasetTestCase` extended model + `ToTestCase()` adapter | ||
| - **M4** — `RunBatchAsync` on `MAFEvaluationHarness` accepting `DatasetTestCase` |
There was a problem hiding this comment.
The em dash appears to be mojibake (—), which renders incorrectly and suggests the file encoding is off. Replace — with a proper em dash (—) (and consider normalizing the file encoding to UTF-8) so this section renders correctly.
|
|
||
| ## References | ||
|
|
||
| - [Strategy Document](../../strategy/AgentEval-Monolith-Modularization-ArchitectureRefactor.md) | ||
| - [Phase 0: Fix Coupling Anomalies](../../strategy/impl/Phase-0-Fix-Coupling-Anomalies.md) | ||
| - [Phase 1: Extract Abstractions](../../strategy/impl/Phase-1-Extract-Abstractions.md) | ||
| - [Phase 2: Extract Core + DataLoaders](../../strategy/impl/Phase-2-Extract-Core-DataLoaders.md) | ||
| - [Phase 3: Extract MAF + RedTeam](../../strategy/impl/Phase-3-Extract-MAF-RedTeam.md) | ||
| - [Phase 4: Validate, Document, CI](../../strategy/impl/Phase-4-Validate-Document.md) | ||
| - [ADR-006: Service-Based Architecture with DI](006-service-based-architecture-di.md) |
There was a problem hiding this comment.
This ADR removes links to the strategy/ docs, but the document still tells readers to "See strategy/impl/ for detailed phase plans" earlier in the file. Please update/remove that reference so the ADR doesn't point to a directory that isn't in the repo.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Comments suppressed due to low confidence (1)
docs/adr/014-dataset-pipeline-two-model-architecture.md:173
- The bullet labels contain a mojibake sequence (
—) where an em dash is intended, which renders incorrectly in the docs. Replace—with—(or a plain-) to avoid garbled text.
- **M3** — `DatasetTestCase` extended model + `ToTestCase()` adapter
- **M4** — `RunBatchAsync` on `MAFEvaluationHarness` accepting `DatasetTestCase`
- **M1** — Documentation corrections
| - [Sample 09: Real MAF Workflow Evaluation](samples/AgentEval.Samples/Sample09_WorkflowEvaluationReal.cs) - Sequential content pipeline (Planner → Researcher → Writer → Editor) | ||
| - [Sample 10: Workflow with Tools](samples/AgentEval.Samples/Sample10_WorkflowWithTools.cs) - Tool-enabled trip planning workflow with function calling |
There was a problem hiding this comment.
The sample links use ../samples/..., which will resolve outside the generated site when DocFX outputs workflows.html at the site root. Since docfx.json maps samples into the docset (dest samples), these links should point to ~/samples/... (or samples/...) so they work in the built docs.
| - [Sample 06](samples/AgentEval.Samples/Sample06_PerformanceProfiling.cs) - Performance profiling with MAFEvaluationHarness | ||
| - [Sample 23](samples/AgentEval.Samples/Sample23_BenchmarkSystem.cs) - Benchmark system with JSONL data loading |
There was a problem hiding this comment.
These sample links use ../samples/..., which will likely break in the rendered DocFX output. Since samples are copied into the docset under samples/, link to ~/samples/... (or samples/...) instead.
.\scripts\build-documentation.ps1 now runs without warnings/errors
updated docfx.json because some files need a resouce mapping one level up
Strategy doc links removed (ADR 014, 015, 016, extensibility.md), strategy/ directory doesn't exist in the repo
ci-cd-integration.md links removed (redteam.md, workflows.md) (redteam.md, workflows.md) File doesn't exist in the repo
Description
Motivation and Context
current build process results in warnings/errors:
Type of Change
How Has This Been Tested?
Test Configuration:
Test Details:
Checklist
Screenshots (if applicable)
Additional Notes
Breaking Changes