Skip to content

Commit 1e08861

Browse files
authored
Merge branch 'main' into kvg-basic-auth
2 parents 61d32aa + 2b2d736 commit 1e08861

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"packages/toolbox-langchain": "0.1.0"}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ bound_tools = [tool.bind_param("param", "value") for tool in tools]
291291
### Binding Parameters While Loading
292292

293293
```py
294-
bound_tool = toolbox.load_tool(bound_params={"param": "value"})
294+
bound_tool = toolbox.load_tool("my-tool", bound_params={"param": "value"})
295295

296296
bound_tools = toolbox.load_toolset(bound_params={"param": "value"})
297297
```

release-please-config.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"bootstrap-sha": "ac43090822fbf19a8920732e2ec3aa8b9c3130c1",
3+
"release-type": "python",
4+
"bump-minor-pre-major": true,
5+
"bump-patch-for-minor-pre-major": true,
6+
"separate-pull-requests": true,
7+
"include-component-in-tag": true,
8+
"changelog-sections": [
9+
{ "type": "feat", "section": "Features" },
10+
{ "type": "fix", "section": "Bug Fixes" },
11+
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": false }
12+
],
13+
"packages": {
14+
"packages/toolbox-core": {
15+
"extra-files": [
16+
"src/toolbox_core/version.py"
17+
]
18+
},
19+
"packages/toolbox-langchain": {
20+
"extra-files": [
21+
"src/toolbox_langchain/version.py"
22+
]
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)