ReAct is a six-part prompt framework for AI agents: Role sets the agent persona, Instructions define the goal, Tools lists available tools, Reasoning instructs the agent to think before acting, Action specifies how to call tools, and Observation tells the agent how to process results. Based on the 2022 DeepMind paper ReAct: Synergizing Reasoning and Acting in Language Models.
ReAct is designed for agentic AI loops, not single-shot prompts. The Reasoning–Action–Observation cycle instructs the AI to think before each action and incorporate tool results before the next step. In Promptary, it is used to store and version agent system prompts that are fetched at runtime via the REST API.
Designed for AI agents that use tools and reason step-by-step.
Use ReAct for AI agent system prompts where the agent has access to tools (web search, code execution, API calls) and must complete multi-step tasks. For single-shot tasks without tool use, any other framework is simpler and more appropriate.
ReAct vs RISEN: RISEN is for single-shot structured tasks; ReAct is for multi-turn agentic loops with tool use. ReAct should only be used for agent system prompts.
Save your first ReAct prompt in the structured editor and get a permanent REST API endpoint. Personal plan is free forever, no credit card required.
Start freeIn the original DeepMind paper, ReAct stands for Reasoning and Acting. In Promptary's framework fields it maps to Role, Instructions, Tools, Reasoning, Action, and Observation — the structural components of a ReAct agent system prompt.
ReAct: Synergizing Reasoning and Acting in Language Models, published by Shunyu Yao et al. at DeepMind in 2022. The paper showed that interleaving chain-of-thought reasoning with tool actions dramatically improved accuracy on multi-step tasks.
Yes. Store the system prompt in Promptary, fetch it via the REST API at runtime, and pass it as the system message to your agent framework.