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
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
This commit is contained in:
parent
a8958c76fb
commit
2da0b90b1b
2 changed files with 21 additions and 6 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue