Skip to content

Commit 16e38e9

Browse files
authored
Merge branch 'main' into twisha-core-e2e
2 parents 7d3b77a + b2a2208 commit 16e38e9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/toolbox-core/src/toolbox_core/tool.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,12 @@ def bind_parameters(
262262
if p.name not in bound_params:
263263
new_params.append(p)
264264

265+
all_bound_params = dict(self.__bound_parameters)
266+
all_bound_params.update(bound_params)
267+
265268
return self.__copy(
266269
params=new_params,
267-
bound_params=bound_params,
270+
bound_params=types.MappingProxyType(all_bound_params),
268271
)
269272

270273

release-please-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,20 @@
44
"bump-minor-pre-major": true,
55
"bump-patch-for-minor-pre-major": true,
66
"separate-pull-requests": true,
7-
"include-component-in-tag": true,
87
"changelog-sections": [
98
{ "type": "feat", "section": "Features" },
109
{ "type": "fix", "section": "Bug Fixes" },
1110
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": false }
1211
],
1312
"packages": {
1413
"packages/toolbox-core": {
14+
"component": "toolbox-core",
1515
"extra-files": [
1616
"src/toolbox_core/version.py"
1717
]
1818
},
1919
"packages/toolbox-langchain": {
20+
"component": "toolbox-langchain",
2021
"extra-files": [
2122
"src/toolbox_langchain/version.py"
2223
]

0 commit comments

Comments
 (0)