LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • MCP Adapters
    • Overview
    • Agents
    • Callbacks
    • Chains
    • Chat models
    • Embeddings
    • Evaluation
    • Globals
    • Hub
    • Memory
    • Output parsers
    • Retrievers
    • Runnables
    • LangSmith
    • Storage
    Standard Tests
    Text Splitters
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    MCP Adapters
    OverviewAgentsCallbacksChainsChat modelsEmbeddingsEvaluationGlobalsHubMemoryOutput parsersRetrieversRunnablesLangSmithStorage
    Standard Tests
    Text Splitters
    Language
    Theme
    Pythonlangchain-classicagentsoutput_parsersreact_json_single_input
    Module●Since v1.0

    react_json_single_input

    Attributes

    attribute
    FORMAT_INSTRUCTIONS: str
    attribute
    FINAL_ANSWER_ACTION: str

    Classes

    class
    AgentOutputParser

    Base class for parsing agent output into agent action/finish.

    class
    ReActJsonSingleInputOutputParser

    Parses ReAct-style LLM calls that have a single tool input in json format.

    Expects output to be in one of two formats.

    If the output signals that an action should be taken, should be in the below format. This will result in an AgentAction being returned.

    Thought: agent thought here
    Action:
    

    { "action": "search", "action_input": "what is the temperature in SF" }

    If the output signals that a final answer should be given, should be in the below format. This will result in an AgentFinish being returned.

    Thought: agent thought here
    Final Answer: The temperature is 100 degrees
    
    View source on GitHub