Skip to content

Commit 8b742cd

Browse files
release 0.2.29 (#347)
* release 0.2.29 * restrict adk version to 1.19
1 parent cc50209 commit 8b742cd

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "veadk-python"
3-
version = "0.2.28"
3+
version = "0.2.29"
44
description = "Volcengine agent development kit, integrations with Volcengine cloud services."
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -16,6 +16,7 @@ dependencies = [
1616
"a2a-sdk>=0.3.0", # For Google Agent2Agent protocol
1717
"deprecated>=1.2.18",
1818
"google-adk>=1.10.0", # For basic agent architecture
19+
"google-adk<=1.19.0", # For basic agent architecture
1920
"litellm>=1.74.3", # For model inference
2021
"loguru>=0.7.3", # For better logging
2122
"opentelemetry-exporter-otlp>=1.35.0",

veadk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"veadk-source": "veadk",
2929
"veadk-version": VERSION,
3030
"User-Agent": f"VeADK/{VERSION}",
31-
"X-Client-Request-Id": f"veadk/{VERSION}",
31+
"X-Client-Request-Id": getenv("MODEL_AGENT_CLIENT_REQ_ID", f"veadk/{VERSION}"),
3232
},
3333
"extra_body": {
3434
"caching": {

veadk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = "0.2.28"
15+
VERSION = "0.2.29"

0 commit comments

Comments
 (0)