diff --git a/README.md b/README.md index cd6e969..6893446 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,7 @@ In order to facilitate running the project entirely on the system where Home Ass ## Version History | Version | Description | |---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| v0.3.11 | Bug-fixes and llama.cpp version update | | v0.3.10 | Add support for the OpenAI "Responses" API endpoint, Update llama.cpp version, Fix for breaking change in HA version 2025.7.0 | | v0.3.9 | Update llama.cpp version, fix installation bugs, fix conversation history not working | | v0.3.8 | Update llama.cpp, remove think blocks from "thinking" models, fix wheel detection for some Intel CPUs, Fixes for compatibility with latest Home Assistant version (2025.4), other small bug fixes | diff --git a/custom_components/llama_conversation/const.py b/custom_components/llama_conversation/const.py index 4047b6a..c2746b4 100644 --- a/custom_components/llama_conversation/const.py +++ b/custom_components/llama_conversation/const.py @@ -406,5 +406,5 @@ OPTIONS_OVERRIDES = { }, } -INTEGRATION_VERSION = "0.3.10" -EMBEDDED_LLAMA_CPP_PYTHON_VERSION = "0.3.11" \ No newline at end of file +INTEGRATION_VERSION = "0.3.11" +EMBEDDED_LLAMA_CPP_PYTHON_VERSION = "0.3.16" \ No newline at end of file diff --git a/custom_components/llama_conversation/manifest.json b/custom_components/llama_conversation/manifest.json index b89e5d2..d3cfee8 100644 --- a/custom_components/llama_conversation/manifest.json +++ b/custom_components/llama_conversation/manifest.json @@ -1,7 +1,7 @@ { "domain": "llama_conversation", "name": "Local LLM Conversation", - "version": "0.3.10", + "version": "0.3.11", "codeowners": ["@acon96"], "config_flow": true, "dependencies": ["conversation"], diff --git a/scripts/run_docker_to_make_wheels.sh b/scripts/run_docker_to_make_wheels.sh index f339208..007a0f3 100755 --- a/scripts/run_docker_to_make_wheels.sh +++ b/scripts/run_docker_to_make_wheels.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION_TO_BUILD="v0.3.10" +VERSION_TO_BUILD="v0.3.16" # make python 11 wheels # docker run -it --rm \