Nothing
test_that("system prompt is applied correctly", {
sys_prompt <- "foo"
sys_msg <- Turn("system", sys_prompt)
user_msg <- Turn("user", "bar")
expect_equal(normalize_turns(), list())
expect_equal(normalize_turns(list(user_msg)), list(user_msg))
expect_equal(normalize_turns(list(sys_msg)), list(sys_msg))
expect_equal(normalize_turns(list(), sys_prompt), list(sys_msg))
expect_equal(
normalize_turns(list(user_msg), sys_prompt),
list(sys_msg, user_msg)
)
expect_equal(
normalize_turns(list(sys_msg, user_msg), sys_prompt),
list(sys_msg, user_msg)
)
})
test_that("normalize_turns throws useful errors", {
sys_prompt <- "foo"
sys_msg <- Turn("system", "foo")
user_msg <- Turn("user", "bar")
expect_snapshot(error = TRUE, {
normalize_turns(1)
normalize_turns(list(1))
normalize_turns(list(sys_msg, user_msg), 1)
normalize_turns(list(sys_msg, user_msg), "foo2")
})
})
test_that("can extract text easily", {
turn <- Turn("assistant", list(
ContentText("ABC"),
ContentImage(),
ContentText("DEF")
))
expect_equal(turn@text, "ABCDEF")
})
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.