Skip to content

Commit

Permalink
pass kwargs and bump (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
hwchase17 authored Jan 27, 2023
1 parent fc19d14 commit 924b7ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion langchain/agents/loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def _load_from_hub(path: str, **kwargs: Any) -> Agent:
file = tmpdirname + "/agent." + suffix
with open(file, "wb") as f:
f.write(r.content)
return _load_agent_from_file(file)
return _load_agent_from_file(file, **kwargs)


def _load_agent_from_file(file: Union[str, Path], **kwargs: Any) -> Agent:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain"
version = "0.0.72"
version = "0.0.73"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"
Expand Down

0 comments on commit 924b7ec

Please sign in to comment.