symfonic.agent.prompts.extraction_prompt¶
extraction_prompt ¶
MemoryExtractionSection -- post-response extraction directive prompt.
Renders the bundled extraction.txt template, substituting the
{{TENANT_ID}} placeholder. Conforms to the PromptSection protocol.
MemoryExtractionSection
dataclass
¶
MemoryExtractionSection(
name: str = "Memory Extraction Directives",
required: bool = False,
priority: int = 90,
cache_breakpoint: bool = False,
template_path: Path | None = None,
template_name: str = _EXTRACTION_TEMPLATE,
)
PromptSection that renders the memory extraction directives.
Substitutes {{TENANT_ID}} from the PromptState context. Used as
a post-response instruction to guide structured memory mutations.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Section display name used by PromptBuilder. |
required |
bool
|
Whether a render failure should abort the build. |
priority |
int
|
Lower numbers appear earlier in the assembled prompt. |
template_path |
Path | None
|
Optional override path for extraction.txt. |
template_name |
str
|
Bundled template to load when |
render
async
¶
Render the extraction directives with state substitution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
PromptState
|
Must contain |
required |
Returns:
| Type | Description |
|---|---|
str
|
Rendered extraction directive string, or empty string if no |
str
|
tenant is present in state. Byte-for-byte compatible with |
str
|
pre-7.4 behaviour: the KNOWN ENTITIES block is interleaved |
str
|
at the |
str
|
template, exactly where pre-split callers expected it. |
Source code in src/symfonic/agent/prompts/extraction_prompt.py
render_split
async
¶
Render the extraction directives as a stable/volatile pair.
v7.4 Item 15: the extraction protocol's stable surface (schema, label rules, few-shot example, domain directives) lives in L1 (cached prefix) while the per-turn volatile KNOWN ENTITIES block lives in L2. This method returns the two strings separately so the engine can route them to different cache layers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
PromptState
|
Same contract as :meth: |
required |
_legacy
|
bool
|
INTERNAL. When |
False
|
Returns:
| Type | Description |
|---|---|
str
|
|
str
|
empty. When no tenant is in state, both are empty. |
Source code in src/symfonic/agent/prompts/extraction_prompt.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | |