Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
02faa83
feat: add comprehensive Cloud Run health monitoring
d-ulker Sep 25, 2025
01e8d58
feat: comprehensive health monitoring system with production-ready op…
d-ulker Sep 25, 2025
45f2be2
fix: resolve FLK-E129 indentation issue in health monitor
d-ulker Sep 25, 2025
683092c
fix: resolve FLK-E501 line length issues in health monitor
d-ulker Sep 25, 2025
75cd614
fix: resolve FLK-W505 docstring line length issue
d-ulker Sep 25, 2025
a271966
perf: optimize logging performance with lazy % formatting
d-ulker Sep 25, 2025
b9cecb8
fix: resolve remaining FLK-E501 line length issue
d-ulker Sep 25, 2025
f6d4012
fix: resolve CodeQL configuration error
d-ulker Sep 25, 2025
7194e9d
fix: further improve CodeQL configuration for reliability
d-ulker Sep 25, 2025
ef23628
fix: revert CodeQL actions to v3 (latest stable version)
d-ulker Sep 25, 2025
048f6ac
fix: add explicit security-and-quality query pack to CodeQL
d-ulker Sep 25, 2025
753f2ac
fix: resolve TestClient resource leak and missing CSS asset issues
d-ulker Sep 25, 2025
79de1c0
fix: remove problematic security-and-quality query pack from CodeQL
d-ulker Sep 25, 2025
a97951b
fix: completely rewrite CodeQL workflow with proven v2 configuration
d-ulker Sep 25, 2025
63a7a61
fix: remove problematic training files causing CodeQL syntax errors
d-ulker Sep 25, 2025
a0e9319
fix: improve CodeQL workflow with Python setup and dependencies
d-ulker Sep 25, 2025
345221f
fix: update CodeQL workflow to use correct requirements.txt path
d-ulker Sep 25, 2025
47e40e8
fix: improve CodeQL workflow with comprehensive dependencies and excl…
d-ulker Sep 25, 2025
03cf88e
fix: comprehensive CodeQL dependency and PYTHONPATH fixes
d-ulker Sep 25, 2025
79fb110
fix: update Python version and onnxruntime requirements for CodeQL
d-ulker Sep 25, 2025
695fbdc
fix: address critical CodeQL and health monitor issues
d-ulker Sep 25, 2025
e0a264d
fix: remove problematic CodeQL config file causing query tag errors
d-ulker Sep 25, 2025
a9dea77
fix: simplify CodeQL workflow to use standard GitHub template
d-ulker Sep 25, 2025
ae37fe9
fix: completely remove custom CodeQL workflow to use only GitHub defa…
d-ulker Sep 25, 2025
f518e86
fix: constrain tokenizers version for transformers 4.55.0 compatibility
d-ulker Sep 25, 2025
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
44 changes: 0 additions & 44 deletions .github/workflows/codeql.yml

This file was deleted.

37 changes: 18 additions & 19 deletions dependencies/requirements-ml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,31 @@
# Exact mirror of pyproject.toml ml extra #
############################################

# Core ML/AI Dependencies
torch>=2.0.0,<3.0.0
transformers>=4.55.0,<5.0.0
datasets>=2.14.0,<5.0.0
accelerate>=0.20.0,<1.0.0
onnx>=1.14.0,<2.0.0
onnxruntime>=1.22.1,<2.0.0
sentencepiece>=0.1.99,<1.0.0
tokenizers>=0.21.4,<1.0.0

# Deep Learning Frameworks
scikit-learn>=1.3.0,<2.0.0
pandas>=2.0.0,<3.0.0
numpy>=1.24.0,<3.0.0
scipy>=1.11.0,<2.0.0
datasets>=2.14.0,<5.0.0
gensim>=4.3.0,<5.0.0
httpx>=0.25.0,<0.29.0

# Text Processing
nltk>=3.8,<4.0.0
spacy>=3.6.0,<4.0.0
gensim>=4.3.0,<5.0.0
textblob>=0.17.0,<1.0.0
numpy>=1.24.0,<3.0.0
onnx>=1.14.0,<2.0.0
onnxruntime>=1.16.0,<2.0.0
pandas>=2.0.0,<3.0.0

# Note: For GPU support, use: pip install .[ml-gpu]
# Note: For GPU support, use: pip install .[ml-gpu]
# For audio processing, use: pip install .[audio]

# HTTP client dependencies for consistency
requests==2.32.4
httpx>=0.25.0,<0.29.0

# Deep Learning Frameworks
scikit-learn>=1.3.0,<2.0.0
scipy>=1.11.0,<2.0.0
sentencepiece>=0.1.99,<1.0.0
spacy>=3.6.0,<4.0.0
textblob>=0.17.0,<1.0.0
tokenizers>=0.21.4,<0.22
# Core ML/AI Dependencies
torch>=2.0.0,<3.0.0
transformers>=4.55.0,<5.0.0
7 changes: 4 additions & 3 deletions deployment/cloud-run/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
flask>=3.1.1,<4.0.0
flask-restx>=1.3.0,<2.0.0
torch>=2.7.1,<2.9.0
transformers>=4.55.0,<5.0.0
gunicorn>=23.0.0,<24.0.0
numpy>=1.24.0,<2.0.0
scikit-learn>=1.5.0,<2.0.0
psutil>=5.9.0,<6.0.0
requests==2.32.4
scikit-learn>=1.5.0,<2.0.0
torch>=2.7.1,<2.9.0
transformers>=4.55.0,<5.0.0
Loading
Loading