GetConfig 获取配置信息
()
| 227 | |
| 228 | // GetConfig 获取配置信息 |
| 229 | func (m *WorkingMemoryMiddleware) GetConfig() map[string]any { |
| 230 | return map[string]any{ |
| 231 | "scope": string(m.manager.GetScope()), |
| 232 | "has_schema": m.manager.GetSchema() != nil, |
| 233 | "has_template": m.manager.GetTemplate() != "", |
| 234 | "experimental": m.experimental, |
| 235 | } |
| 236 | } |
nothing calls this directly
no test coverage detected