Return the markdown cell that introduces the apply / registry-sync section.
(info: dict[str, Any])
| 176 | |
| 177 | |
| 178 | def _apply_md(info: dict[str, Any]) -> dict[str, Any]: |
| 179 | """Return the markdown cell that introduces the apply / registry-sync section.""" |
| 180 | if info["registry_type"] == "remote": |
| 181 | return _md( |
| 182 | "## 4. Registry Sync\n\nRefresh the registry cache to load the latest feature definitions." |
| 183 | ) |
| 184 | return _md( |
| 185 | "## 4. Apply Feature Definitions\n\n" |
| 186 | "Register entities, feature views, and services into the registry. " |
| 187 | "Skip if already applied." |
| 188 | ) |
| 189 | |
| 190 | |
| 191 | def _apply_code(info: dict[str, Any]) -> dict[str, Any]: |