Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature] Embed assistants #1489

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/routes/settings/(nav)/assistants/[assistantId]/+page.svelte
Co-authored-by: Nathan Sarrazin <[email protected]>
  • Loading branch information
gary149 and nsarrazin authored Sep 30, 2024
commit fa6edd62b4319cb2bd6b3309c0fb970bcba06e8a
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

$: shareUrl = `${prefix}/assistant/${assistant?._id}`;
$: embedHtml =
`<HF_SCRIPT src="${prefix}/assistant/${assistant?._id}/embed-snippet" defer></HF_SCRIPT>`.replaceAll(
`<HF_SCRIPT src="${prefix}/api/assistant/${assistant?._id}/embed-snippet" defer></HF_SCRIPT>`.replaceAll(
"HF_SCRIPT",
"script"
); // replaceAll("HF_SCRIPT", "script") is needed to escape, otherwise svelte compiler breaks
Expand Down
Loading