mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
13 lines
182 B
Python
13 lines
182 B
Python
import os
|
|
import faiss
|
|
|
|
class StorageManager(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def put(vector, directory, index_type):
|
|
pass
|
|
|
|
def take(dir):
|
|
pass
|