createMemoryStore 创建内存存储
(config map[string]any)
| 46 | |
| 47 | // createMemoryStore 创建内存存储 |
| 48 | func createMemoryStore(config map[string]any) (vector.VectorStore, error) { |
| 49 | return vector.NewMemoryStore(), nil |
| 50 | } |
| 51 | |
| 52 | // createWeaviateStore 创建 Weaviate 存储 |
| 53 | func createWeaviateStore(config map[string]any) (vector.VectorStore, error) { |
nothing calls this directly
no test coverage detected