From 675364086bb68319b4f7ee170ed5ed84ea5528fd Mon Sep 17 00:00:00 2001 From: Ahmed Allam Date: Tue, 12 Aug 2025 03:23:12 -0700 Subject: [PATCH] Adding stop word param --- pyproject.toml | 2 +- strix/llm/llm.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 860811c..63c2791 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "strix-agent" -version = "0.1.6" +version = "0.1.8" description = "Open-source AI Hackers for your apps" authors = ["Strix "] readme = "README.md" diff --git a/strix/llm/llm.py b/strix/llm/llm.py index 7cba392..65804d1 100644 --- a/strix/llm/llm.py +++ b/strix/llm/llm.py @@ -248,6 +248,7 @@ class LLM: "model": self.config.model_name, "messages": messages, "temperature": self.config.temperature, + "stop": [""], } queue = get_global_queue()