feat: include source page link in chat responses - #180
Merged
Conversation
- Redesign the frontend chat widget (header with avatar/name/status, modern bubbles, pill input, refined launcher, entrance animation). - Add a global "Chat Sound" toggle and a per-visitor mute control in the chat menu; remove the open/close click sound. - Add a "Message Timestamp" show/hide toggle. - Show the welcome message and suggested questions on first load of the inline chat block. - Inline the chat-button SVGs server-side (no runtime fetch / icon flash) and use a bundled SVG as the default icon instead of an emoji. - Keep the typing dots, suggestion chips, and menu legible on similar colors, and theme the menu from the chat colors. - Resolve outstanding PHPStan issues (gmdate guard, require_once ignore).
Reveal the assistant's reply progressively over Server-Sent Events, with a graceful fallback to the existing background + polling flow on hosts that buffer or cannot stream, so the bot keeps working everywhere. - Add a custom admin-ajax streaming endpoint (Stream) that proxies OpenAI's stream to the browser; the API key stays server-side. - Share a single prompt, JSON schema and response interpreter across the streaming and poll paths so replies never diverge by transport. - The widget tries streaming first and falls back to polling when no event arrives in time; the outcome is cached per browser and re-probed after 24h. - Decode the streamed `response` field incrementally via json_decode so escapes and surrogate-pair emoji render correctly while streaming. - Preserve existing contracts: moderation stays up front, hyve_chat_request and hyve_chat_response fire once per reply, analytics unaffected. Closes Codeinwp/hyve#183
… Base Private posts were excluded from the Add Data list because the listing and re-index queries filtered to the 'publish' status only. Include the 'private' status so private posts can be added and stay in sync when edited. (Password-protected posts already matched 'publish' and were addable.) Because added content is surfaced to any chat visitor regardless of the post's original visibility, adding a private or password-protected post now requires an explicit confirmation.
Append a compact source citation to chat answers, shown only for publicly accessible sources. Adds a Settings toggle and a hyve_chat_source_link filter for source-type-specific resolution.
- Redesign the frontend chat widget (header with avatar/name/status, modern bubbles, pill input, refined launcher, entrance animation). - Add a global "Chat Sound" toggle and a per-visitor mute control in the chat menu; remove the open/close click sound. - Add a "Message Timestamp" show/hide toggle. - Show the welcome message and suggested questions on first load of the inline chat block. - Inline the chat-button SVGs server-side (no runtime fetch / icon flash) and use a bundled SVG as the default icon instead of an emoji. - Keep the typing dots, suggestion chips, and menu legible on similar colors, and theme the menu from the chat colors. - Resolve outstanding PHPStan issues (gmdate guard, require_once ignore).
# Conflicts: # inc/Main.php # src/frontend/App.js Co-authored-by: HardeepAsrani <2649903+HardeepAsrani@users.noreply.github.com>
HardeepAsrani
marked this pull request as ready for review
July 3, 2026 20:01
HardeepAsrani
changed the base branch from
feat/private-password-kb-content
to
development
July 3, 2026 20:04
…g-responses Co-authored-by: HardeepAsrani <2649903+HardeepAsrani@users.noreply.github.com>
Member
Author
|
@copilot resolve the merge conflicts in this pull request |
Co-authored-by: HardeepAsrani <2649903+HardeepAsrani@users.noreply.github.com>
Fixed in |
HardeepAsrani
changed the base branch from
development
to
feat/streaming-responses
July 3, 2026 20:30
Member
Author
|
@copilot resolve the merge conflicts in this pull request |
Co-authored-by: HardeepAsrani <2649903+HardeepAsrani@users.noreply.github.com>
Fixed in |
Soare-Robert-Daniel
approved these changes
Jul 6, 2026
HardeepAsrani
changed the base branch from
feat/streaming-responses
to
development
July 8, 2026 20:44
Member
Author
|
@copilot resolve the merge conflicts in this pull request |
Co-authored-by: HardeepAsrani <2649903+HardeepAsrani@users.noreply.github.com>
Fixed in |
Member
Author
|
@codex[agent] Fix the PHPStan/lint errors. |
Agent-Logs-Url: https://github.com/Codeinwp/hyve-lite/sessions/da19ee32-5f21-4b9c-9cb2-49c699cee9cf Co-authored-by: HardeepAsrani <2649903+HardeepAsrani@users.noreply.github.com>
|
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Pro companion is Codeinwp/hyve#236.
Closes: https://github.com/Codeinwp/hyve/issues/152
What this adds
When Hyve answers a question, it can now show where the answer came from — the knowledge base content it drew on — as small numbered citations under the reply.
Highlights:
Sources 1 2 3row beneath the answer; hovering (or focusing) a number reveals the page title, and clicking opens it in a new tab.For developers
Three filters are available for fine-tuning:
hyve_source_link_limit— max number of sources shown (default3).hyve_source_link_score_ratio— how close to the best match a source must score to be shown, as a ratio of the top score (default0.8;0shows everything above the relevance threshold).hyve_chat_source_link— resolve/override the URL for a given source (used by the Pro plugin for website-link and sitemap sources, and to suppress links for custom data).Manual QA
Prerequisite: add a few public Posts/Pages to the Knowledge Base and make sure the chat answers from them.
With the Pro plugin (Codeinwp/hyve#236) active, also confirm: website-link and sitemap sources link to their original public URL, and custom-data sources show no link.