Skip to content

Commit a9a3f41

Browse files
committed
docs: update Python version requirement to 3.12; correct example paths from spoon-cookbook to spoon-core
1 parent bed9fb6 commit a9a3f41

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

docs/cli/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pip install -e .
2828

2929
### Minimum Requirements
3030

31-
- **Python**: 3.11 or higher
31+
- **Python**: 3.12 or higher
3232
- **Operating System**: Linux, macOS, or Windows
3333
- **Memory**: 4GB RAM minimum, 8GB recommended
3434
- **Disk Space**: 500MB for installation
@@ -120,7 +120,7 @@ This command will show:
120120

121121
```bash
122122
python --version
123-
# Should show 3.11 or higher
123+
# Should show 3.12 or higher
124124
```
125125

126126
2. **Permission Denied**

docs/core-concepts/agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ response = await agent.run("Get Bitcoin price and analyze trends")
274274
- Production deployment considerations
275275

276276
#### 🔍 [MCP Spoon Search Agent](../examples/mcp-spoon-search-agent.md)
277-
**GitHub**: [View Source](https://github.com/XSpoonAi/spoon-ai/tree/main/spoon-cookbook/example/spoon_search_agent.py)
277+
**GitHub**: [View Source](https://github.com/XSpoonAi/spoon-core/blob/main/examples/mcp/spoon_search_agent.py)
278278

279279
**What it demonstrates:**
280280
- MCP-enabled agent with dynamic tool discovery

docs/core-concepts/mcp-protocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ result = await mcp_tools.execute_tool("slow_tool", {})
440440
- **[Graph System](../core-concepts/graph-system.md)** - Advanced workflow orchestration
441441
- **[Agent Architecture](../core-concepts/agents.md)** - Agent-MCP integration patterns
442442
- **[API Reference](../api-reference/)** - Complete SpoonOS API documentation
443-
**GitHub**: [View Source](https://github.com/XSpoonAi/spoon-ai/tree/main/spoon-cookbook/example/spoon_search_agent.py)
443+
**GitHub**: [View Source](https://github.com/XSpoonAi/spoon-core/blob/main/examples/mcp/spoon_search_agent.py)
444444

445445
**What it demonstrates:**
446446
- Complete MCP server integration and tool discovery

docs/examples/graph-crypto-analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export TAVILY_API_KEY="your-tavily-api-key" # Search engine
100100

101101
```bash
102102
# Navigate to examples directory
103-
cd spoon-cookbook/example
103+
cd spoon-core/example
104104

105105
# Install dependencies
106106
pip install -r requirements.txt

docs/examples/intent-graph-demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export TAVILY_API_KEY="your-tavily-api-key" # Search engine
8181

8282
```bash
8383
# Navigate to examples directory
84-
cd spoon-cookbook/example
84+
cd spoon-core/example
8585

8686
# Install dependencies
8787
pip install -r requirements.txt

docs/examples/mcp-spoon-search-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ npx --version # Ensure npx is available
4848

4949
```bash
5050
# Navigate to examples directory
51-
cd spoon-cookbook/example
51+
cd spoon-core/example
5252

5353
# Install dependencies
5454
pip install -r requirements.txt

docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Prerequisites
44

5-
- Python 3.11 or higher
5+
- Python 3.12 or higher
66
- Git
77
- Virtual environment (recommended)
88

@@ -29,7 +29,7 @@ python -m venv spoon-env
2929

3030
> 💡 On newer Apple Silicon Macs the `python` shim may not point to Python 3.
3131
> Use `python3` for all commands unless you have explicitly configured `python`
32-
> to target Python 3.10 or later.
32+
> to target Python 3.12 or later.
3333
3434
### 3. Install Dependencies
3535

0 commit comments

Comments
 (0)