feat(monitoring): add DeepSeek monitoring end-to-end
- desktop: new DeepSeek page adapter and monitor registry - desktop: extract generic AI auth helpers into shared module and skip binding when challenge signals are present - admin-web: render DeepSeek HTML answers with inline citation anchors and surface reference-number badges on source cards - server: fall back to inline_links/source_panel_links and read text/siteName fields when extracting DeepSeek citations Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -2581,6 +2581,12 @@ func extractMonitoringInlineCitationsFromRawResponse(raw []byte, platformID stri
|
||||
}
|
||||
|
||||
items := extractMonitoringSourceItems(payload["inline_citation_candidates"])
|
||||
if len(items) == 0 && normalizeMonitoringPlatformID(platformID) == "deepseek" {
|
||||
items = extractMonitoringSourceItems(payload["inline_links"])
|
||||
if len(items) == 0 {
|
||||
items = extractMonitoringSourceItems(payload["source_panel_links"])
|
||||
}
|
||||
}
|
||||
if len(items) == 0 && normalizeMonitoringPlatformID(platformID) == "kimi" {
|
||||
items = extractMonitoringSourceItems(payload["search_results"])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user