Type Alias SerializedZeroShotAgent

SerializedZeroShotAgent: {
    llm_chain?: undefined | SerializedLLMChain;
    load_from_llm_and_tools: undefined | boolean;
}

Type representing a serialized ZeroShotAgent in LangChain. It extends the SerializedAgentT type and includes additional properties specific to the ZeroShotAgent.