fix: synthetic dataset generation for ≥200 rows#54
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…n bug Co-authored-by: Icar0S <39846852+Icar0S@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Investigate dataset generation issue for 200 rows or more
Fix synthetic dataset generation for ≥200 rows
Mar 11, 2026
🧪 PR Test Summary
|
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified FilesNo covered modified files...
|
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.
Gemini (free tier) reliably generates ≤100 rows per call but returns only ~71–76% of rows for larger requests, exhausting all retries. A second bug caused the exhausted-retry path (no exception) to return
[]instead of data, producing "Batch 1 complete: 0/200 total rows".Changes
src/synthetic/generator.py_LLM_MAX_ROWS_PER_CALL = 100are split into sequential sub-batches of ≤100 rows. A 200-row request now makes 2 reliable calls instead of 3 failing ones, reducing quota burn.best_rowsacross retry attempts; when the retry loop exhausts without an exception, fills from the best partial LLM result + mock data rather than returning[].tests/backend/api/test_synthetic_backend.pyTestGenerateBatchLargeRowHandlingwith 6 tests covering: sub-batch triggering, single-call at threshold, mock-fill fallback, no-empty-return guarantee, and best-partial-rows retention.🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.