Skip to content

Commit 8904c27

Browse files
committed
Update ReAct pattern wording to 'Reasoning + Action'
1 parent 6919c02 commit 8904c27

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def create_styled_header():
255255
</h1>
256256
<p style="color: #f0f0f0; text-align: center; margin: 0.5rem 0 0 0;
257257
font-size: 1.1rem; opacity: 0.9;">
258-
AI-Powered Stock Analysis Using Reasoning & Acting
258+
AI-Powered Stock Analysis Using Reasoning & Action
259259
</p>
260260
</div>
261261
""", unsafe_allow_html=True)
@@ -1030,7 +1030,7 @@ def display_sidebar():
10301030

10311031
with st.expander("How it works"):
10321032
st.markdown("""
1033-
**ReAct Pattern (Reasoning + Acting):**
1033+
**ReAct Pattern (Reasoning + Action):**
10341034
10351035
1. 🧠 **Reasons** about market conditions
10361036
2. 🔧 **Acts** by selecting appropriate tools

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**AI-Powered Autonomous Stock Market Research System Using Advanced ReAct Pattern**
44

5-
An intelligent stock analysis platform that leverages the **ReAct (Reasoning + Acting)** design pattern to conduct autonomous market research through sophisticated AI agent capabilities, dynamic tool selection, and adaptive strategy formation.
5+
An intelligent stock analysis platform that leverages the **ReAct (Reasoning + Action)** design pattern to conduct autonomous market research through sophisticated AI agent capabilities, dynamic tool selection, and adaptive strategy formation.
66

77
[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
88
[![FastAPI](https://img.shields.io/badge/FastAPI-0.115+-green.svg)](https://fastapi.tiangolo.com/)

stocksense/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ async def root() -> Dict[str, str]:
7575

7676
@app.post("/analyze/{ticker}")
7777
async def analyze_stock(ticker: str) -> Dict[str, Any]:
78-
"""Analyze stock using the ReAct Agent (Reasoning + Acting) pattern."""
78+
"""Analyze stock using the ReAct Agent (Reasoning + Action) pattern."""
7979
try:
8080
# Validate and normalize ticker
8181
ticker = ticker.upper().strip()

stocksense/react_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def agent_node(state: AgentState) -> AgentState:
210210
}
211211

212212
reasoning_prompt = f"""
213-
You are a ReAct (Reasoning + Acting) agent for stock analysis. You must analyze {ticker} by reasoning about what to do next and then taking action.
213+
You are a ReAct (Reasoning + Action) agent for stock analysis. You must analyze {ticker} by reasoning about what to do next and then taking action.
214214
215215
Current situation:
216216
- Ticker: {ticker}

0 commit comments

Comments
 (0)