Build messages list for debug output.
(user_content: str)
| 523 | |
| 524 | @staticmethod |
| 525 | def _build_messages(user_content: str) -> list[dict[str, str]]: |
| 526 | """Build messages list for debug output.""" |
| 527 | return [ |
| 528 | {"role": "system", "content": SYSTEM_PROMPT}, |
| 529 | {"role": "user", "content": user_content}, |
| 530 | ] |
| 531 | |
| 532 | def _artifact_stem(self, gz_path: str) -> str: |
| 533 | """Encode the gz file as a flat artifact-filename stem. |