mirror of https://github.com/milvus-io/milvus.git
13 lines
178 B
Python
13 lines
178 B
Python
|
import os
|
||
|
import faiss
|
||
|
|
||
|
class StorageManager(object):
|
||
|
def __init__():
|
||
|
pass
|
||
|
|
||
|
def put(vector, directory, index_type):
|
||
|
pass
|
||
|
|
||
|
def take(dir):
|
||
|
pass
|