Nothing
VectorDatabase <- R6::R6Class(
classname = "VectorDatabase",
public = list(
initialize = function(...) {
private$.initialize(...)
},
write_record = function(id, embeddings, metadata) {
stop(call. = FALSE, "Not implemented yet.")
},
read_record = function(id) {
stop(call. = FALSE, "Not implemented yet.")
},
find_records = function(query, top_k = 1) {
stop(call. = FALSE, "Not implemented yet.")
}
),
private = list(
.initialize = function(...) {},
.get_embeddings = function(text) {
stop(call. = FALSE, "Not implemented yet.")
}
)
)
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.