MCPcopy Create free account
hub / github.com/cosdata/cosdata / streaming_module

Function streaming_module

src/api/vectordb/streaming/mod.rs:7–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5use actix_web::{web, Scope};
6
7pub(crate) fn streaming_module() -> Scope {
8 web::scope("/collections/{collection_id}/streaming")
9 .route("/upsert", web::post().to(controller::upsert))
10 .route(
11 "/vectors/{vector_id}",
12 web::delete().to(controller::delete_vector_by_id),
13 )
14}

Callers 1

Calls 1

deleteFunction · 0.85

Tested by

no test coverage detected