Implements the first Claude-like agent for codebase exploration: Core Features: - Explore agent with glob, grep, read, and bash tools - Native PydanticAI tool calling with Ollama/Mistral Nemo - Sanitized Ollama provider (fixes content:null issue) - REST API endpoints for agent execution Tool Infrastructure: - BaseTool abstract class with ToolResult dataclass - ReadFileTool, GlobFilesTool, GrepContentTool, BashReadOnlyTool - Path validation and sandboxing support CLI Client (separate package for future extraction): - webber-cli command with chat, explore, status commands - Communicates with Webber API backend - Rich console output with theming Configuration: - Dev server on port 8095 (production uses 8086) - Mistral Nemo optimizations (temp 0.3, tool_choice required) Tests: 24 tests covering tools and API endpoints Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
607 B
Plaintext
27 lines
607 B
Plaintext
# Webber Production Dependencies
|
|
# Minor version pinning (~=) allows patch updates for security fixes
|
|
# CVE check date: 2026-01-09
|
|
# CVE check sources: PyPI, GitHub Advisories, Snyk, NVD
|
|
|
|
# Core FastAPI
|
|
fastapi~=0.128.0
|
|
starlette~=0.50.0 # CVE-2025-62727, CVE-2025-54121 fixed
|
|
uvicorn[standard]~=0.40.0
|
|
pydantic~=2.12.4 # CVE-2024-3772 (ReDoS) fixed in 2.4.0+
|
|
pydantic-settings~=2.12.0
|
|
|
|
# Agent Framework
|
|
pydantic-ai~=1.40.0
|
|
|
|
# HTTP client
|
|
httpx~=0.28.1
|
|
aiofiles~=25.1.0
|
|
|
|
# CLI
|
|
typer~=0.15.0
|
|
rich~=13.9.0
|
|
|
|
# Utilities
|
|
python-multipart~=0.0.21
|
|
python-dotenv~=1.2.1
|