mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
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
|