feat: Limit Trump mentions based on previous titles
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run

This commit is contained in:
Marty Oehme 2025-07-22 05:49:29 +02:00
parent a8958c76fb
commit 2da0b90b1b
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 21 additions and 6 deletions

View file

@ -5,7 +5,9 @@ from prophet.domain.original import Original
class LLMClient(Protocol):
def rewrite(self, original: Original) -> Improvement:
def rewrite(
self, original: Original, previous_titles: list[str] | None = None
) -> Improvement:
raise NotImplementedError
def rewrite_title(