mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-22 02:50:31 +00:00
core[patch]: Add kwargs to Runnable (#27008)
Fixes #26685 --------- Co-authored-by: Tibor Reiss <tibor.reiss@gmail.com>
This commit is contained in:
@@ -277,7 +277,7 @@ class OpenAIAssistantRunnable(RunnableSerializable[Dict, OutputType]):
|
||||
return cls(assistant_id=assistant.id, client=client, **kwargs)
|
||||
|
||||
def invoke(
|
||||
self, input: dict, config: Optional[RunnableConfig] = None
|
||||
self, input: dict, config: Optional[RunnableConfig] = None, **kwargs: Any
|
||||
) -> OutputType:
|
||||
"""Invoke assistant.
|
||||
|
||||
|
Reference in New Issue
Block a user