issues Search Results · language:Dune language:JavaScript language:JavaScript language:Java language:Python language:Java
Filter by
55.5M results
Post-merge follow-up from the holistic codex‑5.5‑xhigh review of the Example Quality Insights feature (SDK PR #1560,
merged a0bf799b). Verdict CONFIRM‑WITH‑FOLLOWUPS.
MAJOR — SDK aggregate projection ...
type:bug
prefill_service.py:1063-1065 returns the first attribute matching a label. If two attributes both match (e.g., phone
matches both phone and phone_alternate), the first one in iteration order wins — deterministically ...
prefill_service.py:984 and :1046 both catch except Exception: return None when the LLM fails to map a field. Labeled
frugal — but if the LLM is configured and failing (bad API key, rate limit, model overload), ...
prefill_service.py:1008:
return label.endswith( ? ) or len([w for w in label.split() if w]) = 6
A factual data field like Current Street Address Line 2 (6 words) gets classified as a screening question ...
Multiple places chain attribute access on self._browser.current_state(aid):
- prefill_service.py:1187: self._browser.current_state(aid).url
- prefill_service.py:1194: state.detection_signals
- prefill_service.py:1198: ...
The _continue_pages while-loop (prefill_service.py:462-505) has no try/except boundary. Every iteration calls
current_state, detect_fields, fill_field, screenshot, advance — none are wrapped. If the browser ...
Summary
The automated refresh is failing. It s failing upon validation.
Type of issue
!-- Keep one item checked. --
- [ ] Bug
- [ ] Feature request
- [ ] Documentation update
- [X] Data quality ...
prefill_service.py:623-624:
except Exception: # pragma: no cover - defensive
pass
A freshly-created account credential is silently lost — generated password, username, everything. The account was ...
prefill_service.py:1063-1065:
@staticmethod
def _lookup(label: str, attributes: list[Attribute]) - str | None:
for attr in attributes:
if attr.matches(label):
return attr.value ...
prefill_service.py:760:
try:
self._browser.fill_field(aid, fld.selector, resolved.value)
except Exception as exc:
self._emit_error(...)
continue # --- SKIPS lines 772-786
After emitting ...

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.