* Studio: rewrite OpenAI Responses citation markers to markdown links OpenAI's /v1/responses stream interleaves text deltas with inline citation markers built from private-use codepoints (U+E200 / U+E201 / U+E202) shaped like `citeSOURCE_ID`. The codepoints render as garbled "E202" glyphs or empty boxes in most fonts, and the markdown layer further strips them, leaving run-on text like "citeturn1view0turn1view1turn3view0...". The url list still arrived in the Sources panel via url_citation annotations, but the inline cite hand-off into the prose was unreadable. Rewrite each marker into `[N](URL)` when the matching url_citation has already been recorded on this stream, and drop the marker silently otherwise. The lookup uses a new `source_id` field captured on `_record_url_citation` (accepts source_id / id / locator across Responses API revisions). Annotations are now applied BEFORE the delta text is rewritten so that markers and their resolving annotation arriving in the same SSE event still resolve. Reference: https://developers.openai.com/api/docs/guides/citation-formatting * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Preserve every source_id alias for a deduplicated url_citation OpenAI's Responses stream cites the same URL under multiple source_id markers when the model references different spans of the same page. The previous dedup-by-URL kept only the first alias and dropped the rest, so subsequent markers for the same URL never resolved and got stripped from the prose. Switch the citation record to a ``source_ids`` list and append new aliases on every duplicate. The rewriter resolves any alias back to the same citation number so the inline markers all collapse onto one footnote rather than fanning out into bogus repeats. Also collapse the two passes over ``all_url_citations`` in ``_record_url_citation`` into a single loop for clarity. Adds two regression tests covering the alias-collision and mixed-shape cases. * ci: re-trigger after flake in Studio GGUF Tool calling (rebased on main #5741 already) * ci: re-run after transient CodeQL Python checkout auth flake * Fix split-marker buffer + multi-source ids for PR #5713 The original rewriter only handles markers that arrive whole inside a single response.output_text.delta event. OpenAI's stream chunks text on byte-buffer boundaries with no awareness of the marker grammar, so a marker can straddle two deltas (delta-1 ends with "citetu", delta-2 starts with "rn0view0"). Each delta was rewritten in isolation, so the half-marker leaked as garbled "E200/E202" glyphs in the rendered prose. Buffer the unterminated tail across deltas and concatenate it onto the front of the next one so the rewriter sees a complete marker. Flush the held-over tail on response.completed / response.incomplete / [DONE], stripping any leftover private-use bytes so a never-closed marker (truncated stream, missing annotation) never leaks. Also handle the multi-source marker shape from the OpenAI docs -- citeid1id2 should expand to one bracket link per resolvable id. The previous regex captured only the first source id and silently dropped id2/id3. Reference: https://developers.openai.com/api/docs/guides/citation-formatting Tests: 21 new cases covering multi-source, locator suffix, marker split across two and three deltas, unterminated marker on truncation, late annotation resolving a buffered marker, idempotency, and the head/tail split helper directly. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Defer citation segments until url_citation annotation arrives The split-marker buffer already concatenates a marker that straddles two response.output_text.delta events. But when the annotation event for a url_citation arrives AFTER the delta that contains its inline marker (the typical OpenAI Responses ordering), the rewriter still saw an empty lookup table at delta time and silently stripped the marker. The URL kept showing up in the sources panel but the inline link reference was permanently gone. Add _rewrite_citation_markers_partial which leaves an unresolved marker verbatim and reports has_unresolved=True. The streaming loop buffers any closed segment that contains an unresolved marker into a pending_citation_segments FIFO and drains the queue on every later annotation event, on response.completed, on response.incomplete, and on the [DONE] sentinel. Drain order is preserved so later clean text does not leapfrog an earlier deferred segment. End-of-stream forces a strip so no codepoint leaks if the annotation never arrived. Add six regression tests covering single-pass resolution, the late- annotation two-pass case, multi-source markers with partial resolution, mixed known and pending markers in one segment, and idempotency on marker-free input. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Drop unterminated citation tail to prevent cite-prefix plain-text leak `_flush_pending_marker_tail` stripped the three private-use citation codepoints from the held-over buffer, but left the literal ``cite`` keyword plus the source id behind as plain text. A stream ending mid-marker therefore emitted user-visible garbage like ``Some text citeturn0view0`` instead of the intended clean prose. ``pending_marker_tail`` is by construction the suffix that starts at an unclosed ``\\ue200`` opener -- the split helper guarantees there is no closing ``\\ue201`` byte. Without that close the marker is meaningless: the source id cannot be resolved to a URL and the user prose before the opener was already emitted as ``head`` on the originating delta. Bail out before the strip step and return the empty string. As a belt-and-braces measure also drop any orphan ``cite<sid>`` literal at the head of the buffer in case a future caller passes a partially-terminated tail. Update the matching ``_simulate_delta_stream`` harness in the edge tests so it mirrors the new flush logic, and add four regression tests covering unterminated marker with surrounding prose, marker- only inputs, prefix-only outputs, and the split-then-close path that still must resolve to a link. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Defer multi-source markers until all ids resolve for PR #5713 `_rewrite_citation_markers_partial` previously treated a marker as resolved when even one token in a multi-source marker resolved, dropping any still-pending source ids. In streamed Responses events the annotations for a multi-source marker can arrive across separate `annotation.added` chunks, so the caller no longer buffered that segment for retry and the late source id was lost from the inline citation entirely. Flag the marker unresolved whenever any token misses the lookup so the streamer keeps the segment pending. End-of-stream force flush still drops unresolved tokens through `_replace_openai_citation_markers` so locator-style suffixes (which look like unresolved ids at the token level but only appear at end-of-stream) render cleanly. Updated the multi-source test to assert the new pending-then-flush behavior; locator output now lands at force-flush rather than mid stream. * Shorten citation marker comments for PR #5713 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
251 lines
9.5 KiB
Python
251 lines
9.5 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""Tests for the OpenAI Responses-API citation marker rewriter.
|
|
|
|
The stream interleaves text deltas with ``\\ue200cite\\ue202SOURCE_ID\\ue201``
|
|
markers. The rewriter resolves each to `[N](URL)` when the annotation has
|
|
arrived and drops it otherwise; the URL list still flows to Sources via
|
|
`_record_url_citation`.
|
|
|
|
Reference: https://developers.openai.com/api/docs/guides/citation-formatting
|
|
"""
|
|
|
|
import pytest
|
|
|
|
from core.inference.external_provider import (
|
|
_replace_openai_citation_markers,
|
|
_rewrite_citation_markers_partial,
|
|
)
|
|
|
|
|
|
# Citation marker control codepoints (private-use area):
|
|
CITE_START = ""
|
|
CITE_STOP = ""
|
|
CITE_DELIM = ""
|
|
|
|
|
|
def _marker(source_id: str, locator: str | None = None) -> str:
|
|
payload = f"{CITE_START}cite{CITE_DELIM}{source_id}"
|
|
if locator:
|
|
payload = f"{payload}{CITE_DELIM}{locator}"
|
|
return f"{payload}{CITE_STOP}"
|
|
|
|
|
|
def _has_marker_codepoints(text: str) -> bool:
|
|
return any(c in text for c in (CITE_START, CITE_STOP, CITE_DELIM))
|
|
|
|
|
|
def test_passthrough_when_no_marker_present():
|
|
text = "Plain text with no citation markers."
|
|
assert _replace_openai_citation_markers(text, []) == text
|
|
|
|
|
|
def test_marker_rewritten_to_link_when_annotation_known():
|
|
text = f"The capital is Paris {_marker('turn0view0')}."
|
|
citations = [
|
|
{
|
|
"source_id": "turn0view0",
|
|
"url": "https://example.com/paris",
|
|
"title": "Paris",
|
|
},
|
|
]
|
|
out = _replace_openai_citation_markers(text, citations)
|
|
assert not _has_marker_codepoints(out)
|
|
assert "[[1]](https://example.com/paris)" in out
|
|
|
|
|
|
def test_unknown_source_marker_dropped_silently():
|
|
text = f"Foo {_marker('turn9view9')} bar."
|
|
out = _replace_openai_citation_markers(text, [])
|
|
# Marker stripped, no garbled "E202" glyph leaks through, and the
|
|
# surrounding text stays intact.
|
|
assert not _has_marker_codepoints(out)
|
|
assert "E202" not in out
|
|
assert "turn9view9" not in out
|
|
assert "Foo" in out and "bar" in out
|
|
|
|
|
|
def test_multiple_concatenated_markers_resolved_in_order():
|
|
"""Real-world wire shape: a string of markers butted up against each other
|
|
after a sentence, as in the user-reported bug."""
|
|
markers = "".join(_marker(f"turn{i}view{j}") for i, j in [(1, 0), (1, 1), (3, 0)])
|
|
text = f"All animals ranked. {markers}"
|
|
citations = [
|
|
{"source_id": "turn1view0", "url": "https://a.example/dog", "title": "Dog"},
|
|
{"source_id": "turn1view1", "url": "https://a.example/cat", "title": "Cat"},
|
|
{"source_id": "turn3view0", "url": "https://a.example/tiger", "title": "Tiger"},
|
|
]
|
|
out = _replace_openai_citation_markers(text, citations)
|
|
assert "[[1]](https://a.example/dog)" in out
|
|
assert "[[2]](https://a.example/cat)" in out
|
|
assert "[[3]](https://a.example/tiger)" in out
|
|
assert not _has_marker_codepoints(out)
|
|
|
|
|
|
def test_marker_with_locator_resolves():
|
|
text = f"See {_marker('turn2file0', 'L8-L13')}."
|
|
citations = [
|
|
{"source_id": "turn2file0", "url": "https://example.com/doc.txt"},
|
|
]
|
|
out = _replace_openai_citation_markers(text, citations)
|
|
assert "[[1]](https://example.com/doc.txt)" in out
|
|
assert "L8-L13" not in out # locator detail dropped; we just link.
|
|
assert not _has_marker_codepoints(out)
|
|
|
|
|
|
def test_mixed_known_and_unknown_markers():
|
|
known = _marker("turn0view0")
|
|
unknown = _marker("turn0view99")
|
|
text = f"Known {known} and unknown {unknown}."
|
|
citations = [
|
|
{"source_id": "turn0view0", "url": "https://example.com/known"},
|
|
]
|
|
out = _replace_openai_citation_markers(text, citations)
|
|
assert "[[1]](https://example.com/known)" in out
|
|
# Unknown markers leave no trace, but surrounding prose stays.
|
|
assert "Known" in out and "unknown" in out
|
|
assert not _has_marker_codepoints(out)
|
|
assert "E202" not in out
|
|
|
|
|
|
def test_empty_text_returns_verbatim():
|
|
assert _replace_openai_citation_markers("", []) == ""
|
|
|
|
|
|
def test_idempotent_on_pre_stripped_text():
|
|
"""Pre-stripped text (no private-use codepoints) returns verbatim."""
|
|
text = "citeturn1view0 plain"
|
|
assert _replace_openai_citation_markers(text, []) == text
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"citation",
|
|
[
|
|
{"url": "https://example.com/a"}, # no source_id at all
|
|
{"source_id": None, "url": "https://example.com/b"},
|
|
{"source_id": "", "url": "https://example.com/c"},
|
|
],
|
|
)
|
|
def test_citation_without_source_id_does_not_crash(citation):
|
|
text = f"X {_marker('turnXviewY')} Y"
|
|
out = _replace_openai_citation_markers(text, [citation])
|
|
# No mapping, marker stripped. Crash-free is the contract.
|
|
assert not _has_marker_codepoints(out)
|
|
assert "turnXviewY" not in out
|
|
|
|
|
|
def test_multiple_source_id_aliases_resolve_to_same_url():
|
|
"""Every alias for the same URL must resolve, not just the first.
|
|
Regression for the Codex P1 on the original PR."""
|
|
a = _marker("turn0view0")
|
|
b = _marker("turn0view0_span_1")
|
|
c = _marker("turn0view0_span_2")
|
|
text = f"Triple {a}{b}{c} cite."
|
|
citations = [
|
|
{
|
|
"source_ids": ["turn0view0", "turn0view0_span_1", "turn0view0_span_2"],
|
|
"url": "https://example.com/paris",
|
|
"title": "Paris",
|
|
},
|
|
]
|
|
out = _replace_openai_citation_markers(text, citations)
|
|
# All three aliases collapse onto citation [1] -- the URL is the
|
|
# same so it would be misleading to show three different numbers.
|
|
assert out.count("[[1]](https://example.com/paris)") == 3
|
|
assert not _has_marker_codepoints(out)
|
|
|
|
|
|
def test_source_ids_list_and_legacy_source_id_both_resolve():
|
|
"""Mixed-shape citation: legacy ``source_id`` plus newer
|
|
``source_ids`` aliases both resolve."""
|
|
legacy = _marker("legacy_id")
|
|
alias = _marker("alias_id")
|
|
text = f"Both {legacy} and {alias} work."
|
|
citations = [
|
|
{
|
|
"source_id": "legacy_id",
|
|
"source_ids": ["alias_id"],
|
|
"url": "https://example.com/doc",
|
|
},
|
|
]
|
|
out = _replace_openai_citation_markers(text, citations)
|
|
assert out.count("[[1]](https://example.com/doc)") == 2
|
|
assert not _has_marker_codepoints(out)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# _rewrite_citation_markers_partial: deferred-annotation tests. OpenAI emits
|
|
# url_citation annotations on a subsequent SSE event; this helper reports
|
|
# `has_unresolved` so the stream loop defers emission. See PR #5713 audit.
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_partial_known_marker_resolves_and_clears_unresolved():
|
|
text = f"Foo {_marker('s1')} bar."
|
|
out, unresolved = _rewrite_citation_markers_partial(
|
|
text,
|
|
[{"source_id": "s1", "url": "https://example.com/a"}],
|
|
)
|
|
assert "[[1]](https://example.com/a)" in out
|
|
assert unresolved is False
|
|
assert not _has_marker_codepoints(out)
|
|
|
|
|
|
def test_partial_unknown_marker_preserves_verbatim_and_flags():
|
|
text = f"Foo {_marker('s1')} bar."
|
|
out, unresolved = _rewrite_citation_markers_partial(text, [])
|
|
assert unresolved is True
|
|
# Codepoints must remain so a follow-up pass can re-parse.
|
|
assert _has_marker_codepoints(out)
|
|
assert "Foo" in out and "bar." in out
|
|
|
|
|
|
def test_partial_resolves_after_late_annotation():
|
|
"""Two-pass: first call sees no citations, second resolves after annotation."""
|
|
text = f"See {_marker('s1')} for details."
|
|
out1, unresolved1 = _rewrite_citation_markers_partial(text, [])
|
|
assert unresolved1 is True
|
|
citations = [{"source_id": "s1", "url": "https://example.com/x"}]
|
|
out2, unresolved2 = _rewrite_citation_markers_partial(out1, citations)
|
|
assert unresolved2 is False
|
|
assert "[[1]](https://example.com/x)" in out2
|
|
assert not _has_marker_codepoints(out2)
|
|
|
|
|
|
def test_partial_multi_source_partial_resolution_keeps_marker_pending():
|
|
"""Any unresolved token in a multi-source marker leaves the whole marker
|
|
verbatim with ``unresolved`` True; defer until every id resolves or
|
|
end-of-stream forces a flush (dropping unresolved tokens then)."""
|
|
cite = f"{CITE_START}cite{CITE_DELIM}known{CITE_DELIM}locator{CITE_STOP}"
|
|
text = f"Pre {cite} post."
|
|
citations = [{"source_id": "known", "url": "https://example.com/y"}]
|
|
out, unresolved = _rewrite_citation_markers_partial(text, citations)
|
|
assert unresolved is True
|
|
assert cite in out
|
|
# End-of-stream force flush: drop the unresolved token, keep the
|
|
# resolved link. The streamer routes pending segments through
|
|
# `_replace_openai_citation_markers` at force=True for this.
|
|
forced = _replace_openai_citation_markers(out, citations)
|
|
assert "[[1]](https://example.com/y)" in forced
|
|
assert "locator" not in forced
|
|
assert not _has_marker_codepoints(forced)
|
|
|
|
|
|
def test_partial_idempotent_on_marker_free_text():
|
|
text = "Plain text."
|
|
out, unresolved = _rewrite_citation_markers_partial(text, [])
|
|
assert out == text
|
|
assert unresolved is False
|
|
|
|
|
|
def test_partial_mixed_known_and_pending_markers_flags_unresolved():
|
|
known = _marker("known")
|
|
pending = _marker("pending")
|
|
text = f"{known} {pending}"
|
|
citations = [{"source_id": "known", "url": "https://example.com/k"}]
|
|
out, unresolved = _rewrite_citation_markers_partial(text, citations)
|
|
assert unresolved is True # the pending marker drives the flag
|
|
assert "[[1]](https://example.com/k)" in out
|
|
# The pending marker stays verbatim for the next pass.
|
|
assert CITE_START in out and "pending" in out
|