This commit is contained in:
Nuno Campos 2023-08-28 17:37:43 +02:00
parent 4c0e1e501c
commit 7966af1e9c

View File

@ -417,8 +417,6 @@ class Runnable(Generic[Input, Output], ABC):
output = func(input, run_manager=run_managers) # type: ignore[call-arg]
else:
output = func(input) # type: ignore[call-arg]
print("output", output)
except Exception as e:
for run_manager in run_managers:
run_manager.on_chain_error(e)
@ -489,7 +487,6 @@ class Runnable(Generic[Input, Output], ABC):
output = await func(input, run_manager=run_managers) # type: ignore
else:
output = await func(input) # type: ignore[call-arg]
print("output", output)
except Exception as e:
await asyncio.gather(
*(run_manager.on_chain_error(e) for run_manager in run_managers)