Skip to content

Commit 924b7ec

Browse files
authored
pass kwargs and bump (#770)
1 parent fc19d14 commit 924b7ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

langchain/agents/loading.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _load_from_hub(path: str, **kwargs: Any) -> Agent:
101101
file = tmpdirname + "/agent." + suffix
102102
with open(file, "wb") as f:
103103
f.write(r.content)
104-
return _load_agent_from_file(file)
104+
return _load_agent_from_file(file, **kwargs)
105105

106106

107107
def _load_agent_from_file(file: Union[str, Path], **kwargs: Any) -> Agent:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "langchain"
3-
version = "0.0.72"
3+
version = "0.0.73"
44
description = "Building applications with LLMs through composability"
55
authors = []
66
license = "MIT"

0 commit comments

Comments
 (0)