refactor: extract searchNarrative module and usePopoverViewState hook#351
refactor: extract searchNarrative module and usePopoverViewState hook#351bensonwong merged 17 commits intomainfrom
Conversation
- text-slate-400 → text-slate-500 in light mode (2.56:1 → 4.56:1) - text-green-600 → text-green-700 in light mode (3.76:1 → 4.63:1) - ExternalLinkButton: enlarge touch target from 14px to 24px (w-6 h-6) - Remove unused HITBOX_EXTEND_8x14 import from Citation.tsx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- CitationDrawer: use aria-label*= partial match for updated PagePill labels - EvidenceTray: use querySelector for buttons inside aria-hidden tray regions - StatusHeader: green-600 → green-700 for WCAG AA contrast - caretIndicator: slate-400 → slate-500 for WCAG AA contrast Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Centralizes all SearchAttempt[] → display-ready interpretation into a pure function (buildSearchNarrative) that returns a typed SearchNarrative struct. VerificationLog and EvidenceTray now render mechanically from pre-computed rows — no interpretation logic in the view layer. - New: src/react/searchNarrative.ts with buildSearchNarrative() - New: src/__tests__/searchNarrative.test.ts (outcome, rows, summary) - VerificationLog: consumes SearchNarrative prop, removes ~300 LOC - EvidenceTray: calls buildSearchNarrative inline - Barrel exports updated in src/react/index.ts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Allows consumers to tag request origin (e.g. "playground") via the new requestSource option in DeepCitationConfig. Sent as X-Request-Source header on all API requests when set. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…row rendering - Wrap buildSearchNarrative() call in useMemo to avoid rebuilding on every render (was inline in JSX without memoization) - Remove duplicate success-row card layout from NarrativeRowsDisplay; delegate all row rendering to NarrativeRowRenderer - Update NarrativeRowRenderer card condition to also show locationLabel Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Remove unused getStatusColorScheme re-export from VerificationLog.tsx (violates no-variable-re-export policy; consumers import from canonical source) - Fix isTruncated to compare phraseFull instead of already-truncated phraseDisplay (tooltip for long phrases was never triggering since truncated output < threshold) - Auto-fix biome formatting and import ordering Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Outlines the design for an inline, always-visible citation list that sits between the minimal CitationDrawerTrigger and the full CitationDrawer overlay. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Consolidates popover view-state machine (state, haptics, VT transitions, scroll lock, escape handling, expanded-width tracking) into a dedicated hook with a stable handle object. Reduces CitationComponent by ~100 lines and makes the state logic independently testable. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Eliminates the separate searchCount memo in EvidenceTray that duplicated grouping logic. The count now lives on the SearchNarrative object itself, ensuring the toggle label always matches the rendered timeline row count. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…textWindow Exposes searchNarrative status helpers and context-window derivation from the public API for consumer use. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds the ambient/decorative animation tier (800-2000ms) for CSS-only passive animations. Updates canonical-exports with new hook and searchNarrative/searchSummaryUtils entries. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Derive groupedAttemptCount from rows.length after buildAllRows instead of calling the grouping function a third time on the same input. - Wrap onCollapseToSummary in useCallback to avoid creating a new function identity on every render. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Reset prevBeforeExpandedPageRef to "summary" in resetToSummary so escape back-nav doesn't use stale state from a previous popover session. - Remove stable viewState.ref from handlePopoverOpenChange dep array. - Add tests: resetToSummary skips onCollapseToSummary, cross-session prevBeforeExpandedPageRef reset. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
📚 Documentation PreviewThe documentation has been built successfully. To preview locally:
|
| Status | Count |
|---|---|
| 🔍 Total | 773 |
| ✅ Successful | 321 |
| ⏳ Timeouts | 0 |
| 🔀 Redirected | 0 |
| 👻 Excluded | 2 |
| ❓ Unknown | 0 |
| 🚫 Errors | 450 |
| ⛔ Unsupported | 0 |
Errors per input
Errors in docs/_site/404.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference" (Attribute: Some("href")): Cannot convert path '/api-reference' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples" (Attribute: Some("href")): Cannot convert path '/code-examples' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components" (Attribute: Some("href")): Cannot convert path '/components' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started" (Attribute: Some("href")): Cannot convert path '/getting-started' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/api-reference.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/code-examples.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components/" (Attribute: Some("href")): Cannot convert path '/components/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/real-world-examples/" (Attribute: Some("href")): Cannot convert path '/real-world-examples/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types/" (Attribute: Some("href")): Cannot convert path '/types/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/components.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling/" (Attribute: Some("href")): Cannot convert path '/error-handling/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/proof-hosting/" (Attribute: Some("href")): Cannot convert path '/proof-hosting/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/real-world-examples/" (Attribute: Some("href")): Cannot convert path '/real-world-examples/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling/" (Attribute: Some("href")): Cannot convert path '/styling/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types/" (Attribute: Some("href")): Cannot convert path '/types/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/CONTRIBUTING.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/curl-guide.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/error-handling.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] file:///home/runner/work/deepcitation/deepcitation/docs/_site/api-reference.md | Cannot find file: File not found. Check if file exists and path is correct
- [ERROR] file:///home/runner/work/deepcitation/deepcitation/docs/_site/getting-started.md | Cannot find file: File not found. Check if file exists and path is correct
- [ERROR] file:///home/runner/work/deepcitation/deepcitation/docs/_site/styling.md | Cannot find file: File not found. Check if file exists and path is correct
Errors in docs/_site/frameworks/index.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/frameworks/langchain.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference" (Attribute: Some("href")): Cannot convert path '/api-reference' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses" (Attribute: Some("href")): Cannot convert path '/verification-statuses' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/frameworks/nextjs.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components" (Attribute: Some("href")): Cannot convert path '/components' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling" (Attribute: Some("href")): Cannot convert path '/styling' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/frameworks/vercel-ai-sdk.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components" (Attribute: Some("href")): Cannot convert path '/components' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling" (Attribute: Some("href")): Cannot convert path '/error-handling' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/getting-started.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference/" (Attribute: Some("href")): Cannot convert path '/api-reference/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples/" (Attribute: Some("href")): Cannot convert path '/code-examples/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components/" (Attribute: Some("href")): Cannot convert path '/components/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling/" (Attribute: Some("href")): Cannot convert path '/error-handling/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling/" (Attribute: Some("href")): Cannot convert path '/styling/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/index.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference" (Attribute: Some("href")): Cannot convert path '/api-reference' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples" (Attribute: Some("href")): Cannot convert path '/code-examples' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components" (Attribute: Some("href")): Cannot convert path '/components' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide" (Attribute: Some("href")): Cannot convert path '/curl-guide' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling" (Attribute: Some("href")): Cannot convert path '/error-handling' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks" (Attribute: Some("href")): Cannot convert path '/frameworks' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started" (Attribute: Some("href")): Cannot convert path '/getting-started' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started" (Attribute: Some("href")): Cannot convert path '/getting-started' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling" (Attribute: Some("href")): Cannot convert path '/styling' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types" (Attribute: Some("href")): Cannot convert path '/types' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses" (Attribute: Some("href")): Cannot convert path '/verification-statuses' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/styling.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components/" (Attribute: Some("href")): Cannot convert path '/components/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling/" (Attribute: Some("href")): Cannot convert path '/error-handling/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started/" (Attribute: Some("href")): Cannot convert path '/getting-started/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/types.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Errors in docs/_site/verification-statuses.html
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/" (Attribute: Some("href")): Cannot convert path '/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/api-reference.html" (Attribute: Some("href")): Cannot convert path '/api-reference.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-default.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-default.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/css/just-the-docs-head-nav.css" (Attribute: Some("href")): Cannot convert path '/assets/css/just-the-docs-head-nav.css' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo-dark.svg" (Attribute: Some("srcset")): Cannot convert path '/assets/images/logo-dark.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/assets/images/logo.svg" (Attribute: Some("src")): Cannot convert path '/assets/images/logo.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/code-examples.html" (Attribute: Some("href")): Cannot convert path '/code-examples.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/components.html" (Attribute: Some("href")): Cannot convert path '/components.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/curl-guide.html" (Attribute: Some("href")): Cannot convert path '/curl-guide.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/error-handling.html" (Attribute: Some("href")): Cannot convert path '/error-handling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.ico" (Attribute: Some("href")): Cannot convert path '/favicon.ico' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/favicon.svg" (Attribute: Some("href")): Cannot convert path '/favicon.svg' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/" (Attribute: Some("href")): Cannot convert path '/frameworks/' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/langchain.html" (Attribute: Some("href")): Cannot convert path '/frameworks/langchain.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/nextjs.html" (Attribute: Some("href")): Cannot convert path '/frameworks/nextjs.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/frameworks/vercel-ai-sdk.html" (Attribute: Some("href")): Cannot convert path '/frameworks/vercel-ai-sdk.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/getting-started.html" (Attribute: Some("href")): Cannot convert path '/getting-started.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/styling.html" (Attribute: Some("href")): Cannot convert path '/styling.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/types.html" (Attribute: Some("href")): Cannot convert path '/types.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/verification-statuses.html" (Attribute: Some("href")): Cannot convert path '/verification-statuses.html' to a URI: To resolve root-relative links in local files, provide a root dir
- [ERROR] error: | Error building URL for "/web-app-manifest-192x192.png" (Attribute: Some("href")): Cannot convert path '/web-app-manifest-192x192.png' to a URI: To resolve root-relative links in local files, provide a root dir
Workflow run: 23231449448
✅ Playwright Test ReportStatus: Tests passed 📊 Download Report & Snapshots (see Artifacts section) What's in the Visual SnapshotsThe gallery includes visual snapshots for:
Run ID: 23231449445 |
PR ReviewThe core refactors (narrative extraction, view-state hook extraction, scroll lock fix, Bugs / Correctness
Non-null assertion on <VerificationLogTimeline narrative={searchNarrative!} ...
Highest-Priority Blocker — Test Runner Mismatch
import { beforeEach, describe, expect, it, mock } from "bun:test";The project declares Security
headers["X-Request-Source"] = this.requestSource;CRLF characters in a header value allow header injection. Modern if (/[\r\n]/.test(this.requestSource)) {
throw new Error("requestSource must not contain newline characters");
}Also missing: a test asserting the header is present when configured and absent when omitted. Code QualityTruncation tooltip still uses display string, not full string title={row.note || (isTruncated ? row.phraseDisplay : undefined)}
aria-label={`${label}: ${t("action.expandFullPageNum", { pageNumber })}`}If
Missing Tests
Overall: the refactor structure is solid. The |
Address CodeQL review finding — the bare string literal was flagged as an unknown directive. Since React Compiler is not currently active, convert to a comment matching the pattern used in Citation.tsx. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Security: validate requestSource against CRLF injection in constructor - Fix: truncation tooltip now shows phraseFull instead of phraseDisplay - A11y: remove redundant page label prefix from PagePill aria-label - Type: remove logically-always-false isUnexpectedHit from FailureRow - Docs: add JSDoc note that resetToSummary does not call onCollapseToSummary - Docs: annotate _foundPage/_foundLine as kept for API compat - Test: add requestSource header presence/absence/CRLF rejection tests Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Summary
searchNarrativemodule fromVerificationLog.tsx— all attempt grouping, status derivation, and narrative logic now lives insrc/react/searchNarrative.tswith dedicated testsusePopoverViewStatehook fromCitationComponent.tsxintosrc/react/hooks/usePopoverViewState.ts, reducing Citation.tsx by ~200 lines and adding comprehensive testsgroupedAttemptCountcomputation intoSearchNarrativefor colocation with related logiconCollapseToSummarycallbackprevBeforeExpandedPageRefnot resetting inresetToSummaryrequestSourceconfig to SDK client forX-Request-SourceheadergetStatusColorScheme,getStatusHeaderText, andderiveContextWindowfrom package indexTest plan
bun test— all existing and new unit tests pass (searchNarrative, usePopoverViewState)bun run lint— no new lint errorsbun run build— bundle builds successfully