mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-27 21:45:08 +00:00
pass kwargs and bump (#770)
This commit is contained in:
parent
fc19d14a65
commit
924b7ecf89
@ -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:
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user