Build the summarization prompt from the condensed transcript.
(&self, condensed_text: &str)
| 180 | |
| 181 | /// Build the summarization prompt from the condensed transcript. |
| 182 | pub(crate) fn build_prompt(&self, condensed_text: &str) -> String { |
| 183 | SUMMARIZATION_PROMPT.replace("{transcript}", condensed_text) |
| 184 | } |
| 185 | |
| 186 | /// Strip GIT_* environment variables to prevent the subprocess from |
| 187 | /// discovering or modifying the parent's git repo. |