wip: implement websocket chat service with Pydantic models and session management

This commit is contained in:
grillazz
2026-07-14 11:12:45 +02:00
parent eb8acd7b7c
commit 2cf22f89cc
9 changed files with 353 additions and 14 deletions
+2 -1
View File
@@ -5,7 +5,7 @@ description = "A modern FastAPI application with SQLAlchemy 2.0 and AsyncPG for
readme = "README.md"
requires-python = "==3.14.4"
dependencies = [
"fastapi[all]==0.136.3",
"fastapi[all]==0.139.0",
"pydantic==2.13.4",
"pydantic-settings==2.14.1",
"sqlalchemy==2.0.50",
@@ -31,6 +31,7 @@ dependencies = [
"apscheduler[redis,sqlalchemy]>=4.0.0a6",
"rotoger==0.3.0",
"pyinstrument>=5.1.2",
"websockets>=15.0.1",
]
[tool.uv]