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()