ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s

This commit is contained in:
2026-08-20 13:12:50 +00:00
commit b119135836
10275 changed files with 3284984 additions and 0 deletions
+82
View File
@@ -0,0 +1,82 @@
# Installation Guide
## Quick Installation
### 1. Install Core Dependencies
```bash
cd projects/week4/collaboration-tools
# Upgrade pip first
pip install --upgrade pip
# Install with correct versions
pip install --upgrade pydantic>=2.8.0 pydantic-settings>=2.4.0 anyio>=4.5.0
pip install -r requirements.txt
```
### 2. Install Browser Dependencies
```bash
# Install Playwright browsers
playwright install chromium
```
### 3. Configure Environment
```bash
# Copy example configuration
cp env.example .env
# Edit .env with your credentials
# At minimum, set OPENAI_API_KEY for browser AI tasks
nano .env # or use your preferred editor
```
### 4. Verify Installation
```bash
# Run basic tests
python test_basic.py
# Or run the quickstart demo
python quickstart.py
```
## Troubleshooting
### Issue: Pydantic Import Errors
**Error:** `ModuleNotFoundError: No module named 'pydantic._internal._signature'`
**Solution:**
```bash
pip install --upgrade pydantic>=2.8.0 pydantic-settings>=2.4.0
```
### Issue: anyio Type Errors
**Error:** `TypeError: 'function' object is not subscriptable`
**Solution:**
```bash
pip install --upgrade anyio>=4.5.0
```
### Issue: Browser Errors
**Error:** Browser fails to start or Playwright not found
**Solution:**
```bash
playwright install chromium --force
```
### Issue: MCP Server Won't Start
**Solution:**
```bash
# Clean install
pip uninstall mcp fastmcp pydantic pydantic-settings anyio -y
pip install -r requirements.txt
```