diff --git a/patchwork/common/client/llm/anthropic.py b/patchwork/common/client/llm/anthropic.py index 0bc7f98ae..e928e0d02 100644 --- a/patchwork/common/client/llm/anthropic.py +++ b/patchwork/common/client/llm/anthropic.py @@ -84,6 +84,7 @@ def __get_model_limit(self, model: str) -> int: return 200_000 - safety_margin def __adapt_input_messages(self, messages: Iterable[ChatCompletionMessageParam]) -> list[MessageParam]: + system = NOT_GIVEN new_messages = [] for message in messages: if message.get("role") == "system": diff --git a/pyproject.toml b/pyproject.toml index 1bb476a20..3cd563b39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "patchwork-cli" -version = "0.0.84" +version = "0.0.85" description = "" authors = ["patched.codes"] license = "AGPL"