Skip to content

Commit af55eba

Browse files
chore[fuzzer]: gen issues new (#6377)
Add a more reliable fuzzer issue generator. This uses both scripts + template with a gen-AI summary attached. The fully gen-AI solution would create bad issues all the time. --------- Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 00d71b8 commit af55eba

File tree

15 files changed

+1950
-204
lines changed

15 files changed

+1950
-204
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""Fuzzer crash reporting utilities."""
2+
3+
from .dedup import DedupResult, check_duplicate
4+
from .extract import extract_crash_info
5+
from .template import render_template
6+
7+
__all__ = [
8+
"extract_crash_info",
9+
"check_duplicate",
10+
"DedupResult",
11+
"render_template",
12+
]
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env python3
2+
"""Entry point for running as a module: python -m fuzz_report ..."""
3+
4+
from .cli import main
5+
6+
if __name__ == "__main__":
7+
raise SystemExit(main())

0 commit comments

Comments
 (0)