pub async fn import_jsonl_bytes_stream<S, E>( rag: Arc<RAGPipeline>, namespace: String, skip_existing: bool, stream: S, ) -> Result<ImportOutcome>where S: Stream<Item = Result<Bytes, E>> + Unpin, E: Display,