Intended to be used as a setter method, needs to be async.
(value: Record<string, unknown> | undefined)
| 82 | |
| 83 | /** Intended to be used as a setter method, needs to be async. */ |
| 84 | async setFinalOutputs(value: Record<string, unknown> | undefined) { |
| 85 | this._finalOutputs = undefined |
| 86 | if (value) { |
| 87 | const preparedOutputs: Record<string, unknown> = await this.agentExecutor.prepOutputs(this.inputs, value, true) |
| 88 | this._finalOutputs = preparedOutputs |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | runManager: CallbackManagerForChainRun | undefined |
| 93 |
no outgoing calls
no test coverage detected