1
0

Added webhooks subapp for instagram webhooks and celery app and task to pass comment text to an LLM for further processing

This commit is contained in:
2026-03-30 16:07:39 +00:00
parent 84fc5e4b14
commit 4fc7b40224
14 changed files with 2076 additions and 2 deletions

View File

@@ -5,15 +5,23 @@ description = "Comment automation service"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"celery>=5.4.0",
"fastapi[standard]>=0.116.0",
"httpx>=0.28.1",
"pydantic>=2.11.0",
"uplink>=0.9.7",
]
[dependency-groups]
dev = [
"pytest>=8.3.0",
"bandit>=1.7.9",
"black>=24.10.0",
"isort>=5.13.2",
"pre-commit>=4.2.0",
"pytest>=8.3.0",
"ruff>=0.8.0",
"ty>=0.0.1a13",
"uv>=0.8.15",
]
[build-system]
@@ -26,3 +34,6 @@ packages = ["src/comment_automation"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.isort]
profile = "black"