diff --git a/python/hal9/complete.py b/python/hal9/complete.py index 328adfd6..825cd7bd 100644 --- a/python/hal9/complete.py +++ b/python/hal9/complete.py @@ -106,7 +106,6 @@ def complete_llama(completion, messages = [], tools = [], show = True): if tool_calls: tools = {func.__name__: func for func in tools} for tool_call in tool_calls: - print("tool_call.function.arguments: " + tool_call.function.arguments) messages.append({ "role": "assistant", "tool_calls": [{ diff --git a/python/pyproject.toml b/python/pyproject.toml index 111ef880..2ef00c03 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hal9" -version = "2.6.7" +version = "2.6.8" description = "" authors = ["Javier Luraschi "] readme = "README.md"