Store Weaviate 向量存储实现
| 31 | |
| 32 | // Store Weaviate 向量存储实现 |
| 33 | type Store struct { |
| 34 | client *weaviate.Client |
| 35 | className string |
| 36 | namespace string |
| 37 | } |
| 38 | |
| 39 | // NewStore 创建 Weaviate 存储实例 |
| 40 | func NewStore(cfg *Config) (*Store, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected