Create the full inputs for the LLMChain from intermediate steps.
get_full_inputs(
self,
intermediate_steps: list[tuple[AgentAction, str]],
**kwargs: Any = {}
) -> builtins.dict[str, Any]| Name | Type | Description |
|---|---|---|
intermediate_steps* | list[tuple[AgentAction, str]] | Steps the LLM has taken to date, along with observations. |
**kwargs | Any | Default: {}User inputs. |