Nothing
test_that("setting database provider with default namespace", {
gitai <- initialize_project("gitai-demo") |>
set_database(
provider = "PineconeMocked",
index = "gitai"
)
gitai$db$index |> expect_equal("gitai")
gitai$db$namespace |> expect_equal("gitai-demo")
})
test_that("setting database provider with custom namepsace", {
gitai <- initialize_project("gitai-demo") |>
set_database(
provider = "PineconeMocked",
index = "gitai",
namespace = "test_namespace"
)
gitai$db$index |> expect_equal("gitai")
gitai$db$namespace |> expect_equal("test_namespace")
})
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.