Enabled 返回语义记忆是否启用。
()
| 64 | |
| 65 | // Enabled 返回语义记忆是否启用。 |
| 66 | func (sm *SemanticMemory) Enabled() bool { |
| 67 | return sm != nil && sm.cfg.Store != nil && sm.cfg.Embedder != nil |
| 68 | } |
| 69 | |
| 70 | // Close 关闭底层 VectorStore。 |
| 71 | func (sm *SemanticMemory) Close() error { |
no outgoing calls
no test coverage detected