File size: 250 Bytes
a30f2aa
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
@startuml doc_ingest
class DocumentIngestor {
    +ingest_document(file_location: str, collection_name: str): void
}

class VectorDB {
    +pdf_to_vec(file_location: str, collection_name: str): VectorDB
}
DocumentIngestor --> VectorDB : uses
@enduml