-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrequirements.txt
More file actions
46 lines (32 loc) · 902 Bytes
/
requirements.txt
File metadata and controls
46 lines (32 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# AIDEFEND MCP Service Dependencies
# Updated to latest stable versions for Python 3.13 compatibility
# Last updated: 2025-11-10
# FastAPI and server
fastapi==0.121.1
uvicorn[standard]==0.38.0
python-multipart==0.0.20
# Pydantic and settings
pydantic==2.12.4
pydantic-settings==2.7.1
# Vector database
lancedb==0.25.3
# Data processing (required by LanceDB for .to_pandas())
pandas>=2.0.0
# Embedding and ML (lightweight ONNX-based)
fastembed==0.7.3
# MCP (Model Context Protocol) SDK
mcp==1.21.0
# Windows-specific: MCP SDK requires pywin32 for Windows platform APIs
pywin32==311; sys_platform == 'win32'
# HTTP client
httpx==0.28.1
# Rate limiting
slowapi==0.1.9
# Python standard library backports
typing-extensions==4.15.0
# HTML parsing
beautifulsoup4==4.12.3
# Fuzzy string matching (10-100x faster than difflib)
rapidfuzz==3.10.1
# Read-Write Lock for QueryEngine
aiorwlock==1.4.0