Nothing
test_that("add text to prompt", {
prompt <- "Prompt" |>
add_text("Text after") |>
add_text("Text before", position = "before")
constructed_text <- prompt |> construct_prompt_text()
expect_equal(
constructed_text,
"Text before\n\nPrompt\n\nText after"
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.