Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autobot-backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ vanna>=0.7.0 # Issue #723: Natural language to SQL via Vanna.ai
# Issue #858: Additional runtime dependencies for Python 3.13
xxhash>=3.6.0 # Hash functions for LLM caching
structlog>=25.5.0 # Structured logging for service auth
llama-index>=0.13.0,<0.14.0 # RAG framework (pinned for API compatibility)
llama-index>=0.13.0,<0.14.0 # 0.14.x has breaking API changes; sub-packages below target 0.13.x — verified 2026-03-26 (#2471)
llama-index-llms-ollama>=0.7.0,<1.0.0 # Ollama LLM integration (0.7.0+ for core 0.13.0)
llama-index-embeddings-ollama>=0.7.0,<1.0.0 # Ollama embeddings (0.7.0+ for core 0.13.0)
llama-index-vector-stores-chroma>=0.5.0,<1.0.0 # ChromaDB vector store
Expand Down
2 changes: 1 addition & 1 deletion autobot-slm-backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ typing_extensions>=4.0.0 # For Python 3.8 compatibility
# Authentication
PyJWT[crypto]>=2.8.0
passlib[bcrypt]>=1.7.4
bcrypt>=4.0.0,<5.0.0 # bcrypt 5.0.0 incompatible with passlib
bcrypt>=4.0.0,<5.0.0 # passlib 1.7.4 (unmaintained) does not support bcrypt 5.x API — verified 2026-03-26 (#2471)
python-multipart>=0.0.22 # SECURITY UPDATE - arbitrary file write fix

# Async utilities
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tenacity>=8.5.0
# Async SSH for PKI certificate distribution (Issue #166)
asyncssh>=2.22.0

# TensorFlow 2.19.1 supports protobuf <6.0.0dev (verified from PyPI metadata)
# TensorFlow 2.19.1 requires protobuf<6.0.0dev per PyPI metadata — verified 2026-03-26 (#2471)
# Bumped to 5.29.6+ for JSON recursion depth bypass fix
protobuf>=5.29.6,<6.0.0

Expand Down
Loading