File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libs/langchain/langchain/agents/openai_assistant Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -649,7 +649,7 @@ def _get_response(self, run: Any) -> Any:
649
649
)
650
650
return actions
651
651
run_info = json .dumps (run .dict (), indent = 2 )
652
- msg = f"Unexpected run status: { run .status } . Full run info:\n \n { run_info } ) "
652
+ msg = f"Unexpected run status: { run .status } . Full run info:\n \n { run_info } "
653
653
raise ValueError (msg )
654
654
655
655
def _wait_for_run (self , run_id : str , thread_id : str ) -> Any :
@@ -802,7 +802,7 @@ async def _aget_response(self, run: Any) -> Any:
802
802
)
803
803
return actions
804
804
run_info = json .dumps (run .dict (), indent = 2 )
805
- msg = f"Unexpected run status: { run .status } . Full run info:\n \n { run_info } ) "
805
+ msg = f"Unexpected run status: { run .status } . Full run info:\n \n { run_info } "
806
806
raise ValueError (msg )
807
807
808
808
async def _await_for_run (self , run_id : str , thread_id : str ) -> Any :
You can’t perform that action at this time.
0 commit comments