Marker base for flat domain cards. Subclasses add a typed payload (e.g. ``summary``, ``methodology``, ``revenue``). They MUST override `embedding_text()` to produce a stable string suitable for the store's vector index.
| 14 | |
| 15 | class FlattenKnowledge(BaseKnowledge): |
| 16 | """Marker base for flat domain cards. |
| 17 | |
| 18 | Subclasses add a typed payload (e.g. ``headline``, ``guidance``, or |
| 19 | ``revenue``). Search text is selected by the library projection boundary. |
| 20 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected