mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-30 13:50:11 +00:00
rfc
This commit is contained in:
@@ -2874,6 +2874,11 @@ class RunnableBindingBase(RunnableSerializable[Input, Output]):
|
||||
):
|
||||
yield item
|
||||
|
||||
def __getattr__(self, item):
|
||||
if hasattr(super(), item):
|
||||
return getattr(super(), item)
|
||||
return getattr(self.bound, item)
|
||||
|
||||
|
||||
RunnableBindingBase.update_forward_refs(RunnableConfig=RunnableConfig)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user