refactor(records): add JSON record boundaries - #610
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (8)
🚧 Files skipped from review as they are similar to previous changes (8)
📜 Recent review details⏰ Context from checks skipped due to timeout. (9)
WalkthroughThis PR adds shared JSON type aliases and runtime guards, tightens record parsing and typing, refactors JSON record helpers and unflatten typing, normalizes record keys in generation, and updates tests for the new JSON and record behavior. ChangesJSON typing and record utility refactor
Estimated code review effort: 3 (Moderate) | ~25 minutes Suggested labels: Suggested reviewers: 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
04fe901 to
e51202e
Compare
38dbb0c to
e6eeb2e
Compare
e51202e to
236ccf4
Compare
fcfa4e4 to
abe772d
Compare
92c88ac to
2693728
Compare
abe772d to
4279303
Compare
b38bbc1 to
8771759
Compare
9fb2209 to
7b0bc4d
Compare
7b798be to
596c793
Compare
7b0bc4d to
dde3d14
Compare
1f04697 to
12d893a
Compare
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
Greptile SummaryThis PR introduces a dedicated
Confidence Score: 5/5Safe to merge; the new JSON guards and type narrowing are well-tested and introduce no behavioral regressions on the record-processing hot path. All changed code paths have explicit unit tests, including the new NaN/Infinity rejection, non-object top-level JSON, and top-level array flattening. The normalize_record_keys addition is a one-liner with clear intent. No logic regressions were found in the flatten refactor or the timestamp conversion change. No files require special attention. Important Files Changed
|
There was a problem hiding this comment.
Actionable comments posted: 2
🧹 Nitpick comments (2)
src/nemo_safe_synthesizer/data_processing/records/json_types.py (1)
48-50: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick winDelegate
is_json_objecttois_json_valueto avoid logic drift.
is_json_object's body duplicates the exact validationis_json_valuealready performs in itscase dict()branch (Line 43). Two independent implementations of the same check can silently diverge if one is updated later.♻️ Proposed refactor
def is_json_object(value: object) -> TypeIs[JsonObject]: """Return whether ``value`` is a JSON object with string keys.""" - return isinstance(value, dict) and all(isinstance(key, str) and is_json_value(item) for key, item in value.items()) + return isinstance(value, dict) and is_json_value(value)src/nemo_safe_synthesizer/data_processing/records/value_path.py (1)
76-76: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick winPrefer
X | NoneoverOptional[X | Y].These touched signatures mix
Optional[...]with the newerX | Yunion syntax (Optional[dict[Any, Any] | list[Any]]). As per coding guidelines, "Prefer native typing syntax:X | Yinstead ofOptional[X]orUnion[X, Y]."♻️ Proposed fix
-def unflatten(data: dict[ValuePath, Any]) -> Optional[dict[Any, Any] | list[Any]]: +def unflatten(data: dict[ValuePath, Any]) -> dict[Any, Any] | list[Any] | None:def _unflatten_path( - result: Optional[dict[Any, Any] | list[Any]], path: ValuePath, value: Any + result: dict[Any, Any] | list[Any] | None, path: ValuePath, value: Any ) -> dict[Any, Any] | list[Any]:Also applies to: 110-112
Source: Coding guidelines
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: f1e9a0a1-531e-424e-8802-76d39b7a4772
📒 Files selected for processing (8)
src/nemo_safe_synthesizer/data_processing/record_utils.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pysrc/nemo_safe_synthesizer/generation/results.pytests/data_processing/test_records.pytests/generation/test_generation.py
📜 Review details
⏰ Context from checks skipped due to timeout. (6)
- GitHub Check: Unit Tests (3.13)
- GitHub Check: Unit Tests (3.11)
- GitHub Check: Unit Tests (3.12)
- GitHub Check: Smoke Tests
- GitHub Check: Greptile Review
- GitHub Check: Analyze (Python)
🧰 Additional context used
📓 Path-based instructions (12)
**/*.{md,markdown,py}
📄 CodeRabbit inference engine (.cursor/rules/agent-markdown-style.mdc)
**/*.{md,markdown,py}: Avoid decorative bold (**text**) in list items, body text, and docstrings; use structural cues (headers, list markers, colons, backticks) for emphasis instead
Use backticks for code identifiers, paths, and CLI commands in markdown and docstrings
Files:
tests/generation/test_generation.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pytests/data_processing/test_records.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
**/*.py
📄 CodeRabbit inference engine (AGENTS.md)
**/*.py: Place durable implementation guidance in function and class docstrings for public contracts and source comments for local invariants
Target Python 3.11–3.13 with modern syntax (X | Y,list[str],Self). Python 3.14+ is not supported
**/*.py: Source code must remain Python 3.11 syntax-compatible; do not use Python 3.12-only syntax such as PEP 695 type statements or bracketed generic class/function parameters in shared package code
Use ruff for formatting and linting via mise run format and mise run check tasks; run formatting before committing
Use ty for type checking via mise run check task; ensure type hints are present and valid
New features must include tests; bug fixes must include regression tests
**/*.py: UseBaseSettingsfor env/CLI settings, preferAliasChoicesfor per-field dual naming, and useenv_prefixonly for simple settings classes with a shared prefix.
UseField(description=...)as the canonical field docstring for Pydantic models, and always include it.
Use assignment-styleField(default=..., description="...")as the default for model fields; prefer it overAnnotatedunless extra metadata is needed.
UseAnnotatedonly when the field carries additional metadata beyondField()(for example validators, reusable constrained aliases, nested-type constraints, or discriminated unions).
WhenAnnotatedis used, place defaults as bare assignments (= value), exceptdefault_factory, which should still use assignment-styleField(default_factory=...).
For immutable value objects and validators, prefer@dataclass(frozen=True); use mutable dataclasses only for builders, accumulators, and pipeline state.
Usefield(default_factory=list)for mutable defaults; never use= [].
UseStrEnumfor string-valued enums used in configs or serialization; use plainEnumfor internal-only named constants.
Useobservability.get_logger(__name__)for logging; do not calllogging.getLogger()orstructlog.get_logger()direc...
Files:
tests/generation/test_generation.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pytests/data_processing/test_records.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
**/test_*.py
📄 CodeRabbit inference engine (AGENTS.md)
Use the
unitmarker instead of the deprecatedunit_testmarker for test identification
Files:
tests/generation/test_generation.pytests/data_processing/test_records.py
tests/**
📄 CodeRabbit inference engine (.cursor/rules/repo-navigation.mdc)
tests/**: Mirrorsrc/directory structure intests/directory for test organization
Auto-mark tests by directory:tests/e2e/→e2e,tests/smoke/→smoke, otherwise default tounitMirror source code directory structure in tests directory (e.g.,
tests/training/,tests/generation/parallel to source structure)
Files:
tests/generation/test_generation.pytests/data_processing/test_records.py
⚙️ CodeRabbit configuration file
tests/**:Testing Guide
Comprehensive testing reference for Safe-Synthesizer developers. Covers commands, markers, test data, fixtures, and gotchas.
Read First
tests/conftest.py-- auto-marking,load_test_dataset/load_test_dataframe,fixture_mock_processorpatternpytest.ini-- markers, asyncio, timeouttests/evaluation/conftest.py-- most complex: Faker-basedmake_df, nullable dtype conversiontests/generation/conftest.py-- JSONL/schema fixtures,fixture_valid_iris_dataset_jsonl_and_schemaRunning Tests
All mise test tasks, grouped by scope:
mise run test # Unit (excludes slow, e2e, and smoke) mise run test:unit-slow # Unit tests including slow (excludes e2e and smoke) mise run test:smoke # CPU smoke tests (~few min, no GPU required) mise run test:smoke:gpu # All staged GPU smoke tests (requires CUDA) mise run test:smoke:gpu:train-only mise run test:smoke:gpu:generation mise run test:smoke:gpu:resume mise run test:smoke:gpu:structured-generation mise run test:smoke:gpu:timeseries mise run test:smoke:gpu:smollm2 mise run test:e2e # All e2e (requires CUDA) -- runs default + dp mise run test:e2e:default # e2e default (no-DP) tests only mise run test:e2e:dp # e2e DP tests only mise run test:ci # CI unit tests with coverage (excludes slow, e2e, gpu, smoke) mise run test:ci-slow # CI slow tests with coverage mise run test:ci-container # CI tests in a Linux container (Docker/Podman)Run a single test:
uv run --frozen pytest tests/path/test_file.py::test_name -vvs -n0Test runner:
uv run --frozen pytest -n auto --dist loadscope -vv...
Files:
tests/generation/test_generation.pytests/data_processing/test_records.py
**/*.{py,sh,yaml,yml,md}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
All source files (.py, .sh, .yaml, .yml, .md) require SPDX copyright headers; mise run format adds them automatically
Files:
tests/generation/test_generation.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pytests/data_processing/test_records.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
tests/**/*.py
📄 CodeRabbit inference engine (tests/TESTING.md)
tests/**/*.py: Auto-mark tests based on file path: tests under/e2e/gete2emarker, tests under/smoke/getsmokemarker, all others getunitmarker (only if no category marker already present)
Every test should have exactly one category marker:unit,smoke, ore2e
Usepytest.mark.requires_gpumodifier on tests that need CUDA hardware
Usepytest.mark.vllmon tests using vLLM generation backend and ensure each vLLM test file runs in its own process for GPU memory isolation
Usepytest.mark.slowon long-running tests
Usepytest.mark.smollm2for SmolLM2 Hub download tests to enable process isolation
Usepytest.mark.noautouseto skip autouse fixtures for specific tests
Useload_test_dataset(filename)helper to load test datasets fromtests/stub_datasets/as HuggingFaceDatasetobjects
Useload_test_dataframe(filename)helper to load test data files fromtests/stub_datasets/as pandas DataFrames
Convert pandas columns to nullable dtypes (pd.Int64Dtype(),pd.BooleanDtype()) before assigningnp.nanvalues
Usefake.seed_instance(seed)andrandom.seed(seed)together for Faker-based test data reproducibility
When sharing methods across multiple test files, define them inconftest.pyand import them using relative imports (e.g.,from .conftest import train_with_sdk); note that importing from other test files liketests/cli/helpers.pydoes not work
Usefixture_mock_processororfixture_mock_processor_without_valid_recordsfor mocking ParsedResponse objects withvalid_records,invalid_records,errors, andprompt_numberfields
Usepytest.importorskipto gate tests on optional dependencies that require specific extras (e.g.,sentence_transformers,vllm)
Run vLLM tests with separate pytest invocations (one per file) using-n 0(single process) for GPU memory isolation, or use staged mise tasks for CI visibility
Print statements are allowed in tests (ruffT201is suppressed fortests/directory) and should...
Files:
tests/generation/test_generation.pytests/data_processing/test_records.py
⚙️ CodeRabbit configuration file
Review tests against tests/TESTING.md. Check marker usage, fixture naming, tmp_path usage, determinism, and GPU/vLLM process-isolation requirements. Flag slop tests that only check that code runs, assert result is not None when stronger invariants exist, over-mock internal implementation details, patch around the bug instead of reproducing it, or add broad snapshot/golden churn without a clear contract. Flag change detector tests that fail on harmless refactors, formatting, record ordering, incidental wording, or private implementation details without demonstrating a behavior regression. Prefer existing fixtures or focused new fixtures for repeated setup; keep tests DRY when reasonable without making the behavior under test opaque. print() is allowed in tests.
Files:
tests/generation/test_generation.pytests/data_processing/test_records.py
**/*
📄 CodeRabbit inference engine (STYLE_GUIDE.md)
**/*: Every source file must include the required SPDX copyright and license header; use HTML comments for Markdown, hash comments for.py,.sh,.yaml, and.yml, and hash-comment headers inside YAML frontmatter for Markdown files with frontmatter.
Ensure files end with a newline and have no trailing whitespace; use a single space between sentences.
Files:
tests/generation/test_generation.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pytests/data_processing/test_records.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
⚙️ CodeRabbit configuration file
**/*: Review as a senior maintainer for NeMo Safe Synthesizer. Prioritize issues that can change behavior, break user workflows, weaken privacy guarantees, hide failures, make tests unreliable, or create maintenance risk. Avoid generic style commentary unless it points to a concrete project convention that automated tools will not catch.
Comment only when the finding is actionable and tied to changed code. For each finding, state the impact, the condition that triggers it, and the smallest practical fix. Prefer one precise comment over broad advice. Do not ask for refactors outside the PR scope unless the changed code creates the problem.
Review type guidance: - Potential issue: use for correctness bugs, data loss, privacy leaks,
security risks, broken public APIs, invalid config behavior, missing
validation, hidden failures, nondeterministic tests, or CI breakage.
- Refactor suggestion: use for local maintainability problems introduced
by the diff when they have clear future cost, such as duplicated setup,
unclear boundaries, over-mocking, avoidable complexity, or opaque test
helpers.- Nitpick: avoid in chill mode. Do not emit formatting, import-order,
wording, or style-only comments unless automated tools cannot catch the
issue and it affects maintainability.Severity guidance: - Critical: security/privacy leaks, data loss, training/test/holdout
contamination, or broken release/package/core pipeline execution.
- Major: incorrect generation/training/evaluation behavior, broken
CLI/SDK public API, invalid config defaults or validators, or GPU/vLLM
cleanup and process-isolation bugs likely to fail CI or production
runs.- Minor: localized bugs, missing focused tests for changed behavior, or
bad test patterns that weaken regression coverage.- Trivial: small cleanup with no behavior impact. Usually suppress in
chill mode.- Info: context only. Avoid unless it helps reviewers understand risk.
Safe-Synthesizer-specific review focus: - Data ...
Files:
tests/generation/test_generation.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pytests/data_processing/test_records.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
**
⚙️ CodeRabbit configuration file
**:AGENTS.md
Guide for AI agents (Cursor, Windsurf, Claude Code, etc.) working in the Safe-Synthesizer repo.
This project loads local developer preferences from
@AGENTS.local.md. You MUST read this file if it exists and give its instructions top priority.Skills
Repo-specific skills live in
.agents/skills/; see.agents/README.mdfor the catalog. Read a skill when the task matches its scope instead of copying workflow details into this file.Durable implementation guidance belongs with the code it describes: function and class docstrings for public contracts and source comments for local invariants. Test-suite guidance belongs in
tests/TESTING.md.Repo Conventions
See STYLE_GUIDE.md for detailed code style conventions (Python, markdown, Dockerfiles, shell scripts, testing, config files, docstrings).
Use
uvfor everything -- neverpipor rawpython. Python 3.11–3.13 with modern syntax (X | Y,list[str],Self). Python 3.14+ is not supported.Common commands:
mise run test(unit tests),mise run format(auto-fix formatting + lint + copyright),mise run check(read-only local quality checks),mise run validate(pre-PR quality, lock, and CI unit checks),mise run typecheck(ty only). Always use mise tasks or the wrapper scripts intools/instead of runningruffortydirectly. Useuv runfor Python execution. When in doubt, inspectmise tasksandpytest --markers.The canonical
uv synccommand for a full GPU/dev environment is:uv sync --frozen --extra cu129 --extra engine --group devBare
uv sync --frozen(without extras) installs an incomplete environment --ty, import checks, and GPU tests will fail.Feature branches off
main. Branch names often include an issue number prefix (e.g.,<author>/123-short-name).Do ...
Files:
tests/generation/test_generation.pysrc/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pytests/data_processing/test_records.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
src/nemo_safe_synthesizer/**/*.py
📄 CodeRabbit inference engine (CONTRIBUTING.md)
API reference pages are auto-generated from Python docstrings using Google-style format; write docstrings in src/nemo_safe_synthesizer/ and they will appear in the reference/
Files:
src/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
src/**/*.py
📄 CodeRabbit inference engine (STYLE_GUIDE.md)
src/**/*.py: Use relative imports insidesrc/, for examplefrom ..observability import get_logger.
Every directory undersrc/that contains Python files must include an__init__.pyfile.
Files:
src/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
⚙️ CodeRabbit configuration file
Review library code against STYLE_GUIDE.md. Focus on behavior, API contracts, error handling, resource cleanup, typing, logging, and user-facing failures. Public APIs and nontrivial functions need Google-style docstrings.
Files:
src/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/generation/results.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
src/nemo_safe_synthesizer/data_processing/**/*.py
⚙️ CodeRabbit configuration file
Review for data-contract regressions. Check input/training/test/synthetic naming, group boundaries, token-budget math, record ordering, schema and column validation, nullable dtypes, and deterministic behavior.
Files:
src/nemo_safe_synthesizer/data_processing/records/json_types.pysrc/nemo_safe_synthesizer/data_processing/records/base.pysrc/nemo_safe_synthesizer/data_processing/records/value_path.pysrc/nemo_safe_synthesizer/data_processing/records/json_record.pysrc/nemo_safe_synthesizer/data_processing/record_utils.py
src/nemo_safe_synthesizer/generation/**/*.py
⚙️ CodeRabbit configuration file
Review generation changes for retry loops, stopping conditions, invalid record handling, regex/structured output contracts, backend teardown, memory cleanup, and vLLM assumptions.
Files:
src/nemo_safe_synthesizer/generation/results.py
🧠 Learnings (2)
📚 Learning: 2026-05-27T22:20:37.354Z
Learnt from: kendrickb-nvidia
Repo: NVIDIA-NeMo/Safe-Synthesizer PR: 520
File: tests/generation/test_vllm_backend.py:556-587
Timestamp: 2026-05-27T22:20:37.354Z
Learning: In NVIDIA-NeMo/Safe-Synthesizer, `tests/conftest.py`’s `pytest_collection_modifyitems` hook applies pytest category markers automatically based on each test file’s path: tests under `/e2e/` get `pytest.mark.e2e`, tests under `/smoke/` get `pytest.mark.smoke`, and all other tests get `pytest.mark.unit`. Therefore, when reviewing pytest tests outside `tests/e2e/` and `tests/smoke/`, do not flag missing explicit `pytest.mark.unit` decorators on test classes/functions as an issue (the hook will add them during collection). If a new test directory/category is introduced, ensure the hook is updated so it’s categorized correctly.
Applied to files:
tests/generation/test_generation.pytests/data_processing/test_records.py
📚 Learning: 2026-06-04T16:14:09.868Z
Learnt from: binaryaaron
Repo: NVIDIA-NeMo/Safe-Synthesizer PR: 526
File: tests/generation/test_vllm_backend.py:399-509
Timestamp: 2026-06-04T16:14:09.868Z
Learning: In this repo, only apply `pytest.mark.vllm` to smoke tests under `tests/smoke/` that actually run real vLLM GPU generation and therefore require per-file process isolation (e.g., `test-smoke-gpu-*` Makefile targets). Do not apply `pytest.mark.vllm` to unit-style tests under `tests/generation/` that merely import `vllm_backend` but never instantiate a real vLLM engine and never call `.generate()` (GPU not required). Note that `tests/conftest.py` auto-marks these as `unit` via `pytest_collection_modifyitems`, and `vllm` is not among the auto-mark categories—so if a test in `tests/generation/` has `vllm`, it should be treated as a review issue unless it meets the real GPU generation criteria above.
Applied to files:
tests/generation/test_generation.py
🪛 Ruff (0.15.20)
src/nemo_safe_synthesizer/data_processing/records/value_path.py
[warning] 101-101: Loop control variable i not used within loop body
Rename unused i to _i
(B007)
🔇 Additional comments (7)
src/nemo_safe_synthesizer/generation/results.py (1)
17-17: LGTM!Also applies to: 298-298
tests/data_processing/test_records.py (1)
11-56: LGTM!Also applies to: 181-187
tests/generation/test_generation.py (1)
16-16: LGTM!Also applies to: 264-272
src/nemo_safe_synthesizer/data_processing/records/json_record.py (2)
55-62: Already discussed — theNone-keyed wrapping for top-level lists.This was raised in a prior review thread and confirmed intentional (the
Nonekey is later replaced with real values during flattening).
15-152: LGTM!src/nemo_safe_synthesizer/data_processing/records/base.py (1)
92-104: LGTM!src/nemo_safe_synthesizer/data_processing/records/value_path.py (1)
142-142: LGTM!
85182ad to
a7f61aa
Compare
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
a7f61aa to
756d95c
Compare
Summary
Test plan
mise run test -- tests/data_processing/test_records.py tests/generation/test_generation.pymise run typecheckRelated issue: #614
Summary by CodeRabbit