a digital entity named phi that roams bsky

chore: remove transitive dependencies from explicit declarations

removes httpx and websockets from pyproject.toml as they are not directly imported and are provided transitively by atproto/fastmcp.

dependencies reduced from 11 to 9:
- anthropic, atproto, fastapi, fastmcp, openai, pydantic-ai, pydantic-settings, rich, turbopuffer, uvicorn

verified: bot still runs correctly, all HTTP operations working via transitive deps

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Changed files
+2 -8
-2
pyproject.toml
··· 10 10 "atproto@git+https://github.com/MarshalX/atproto.git@refs/pull/605/head", 11 11 "fastapi", 12 12 "fastmcp>=0.8.0", 13 - "httpx", 14 13 "openai", 15 14 "pydantic-ai", 16 15 "pydantic-settings", 17 16 "rich", 18 17 "turbopuffer", 19 18 "uvicorn", 20 - "websockets>=15.0.1", 21 19 ] 22 20 23 21 [tool.hatch.version]
+2 -6
uv.lock
··· 1 1 version = 1 2 - revision = 2 2 + revision = 3 3 3 requires-python = ">=3.12" 4 4 5 5 [[package]] ··· 181 181 { name = "atproto" }, 182 182 { name = "fastapi" }, 183 183 { name = "fastmcp" }, 184 - { name = "httpx" }, 185 184 { name = "openai" }, 186 185 { name = "pydantic-ai" }, 187 186 { name = "pydantic-settings" }, 188 187 { name = "rich" }, 189 188 { name = "turbopuffer" }, 190 189 { name = "uvicorn" }, 191 - { name = "websockets" }, 192 190 ] 193 191 194 192 [package.dev-dependencies] ··· 205 203 { name = "atproto", git = "https://github.com/MarshalX/atproto.git?rev=refs%2Fpull%2F605%2Fhead" }, 206 204 { name = "fastapi" }, 207 205 { name = "fastmcp", specifier = ">=0.8.0" }, 208 - { name = "httpx" }, 209 206 { name = "openai" }, 210 207 { name = "pydantic-ai" }, 211 208 { name = "pydantic-settings" }, 212 209 { name = "rich" }, 213 210 { name = "turbopuffer" }, 214 211 { name = "uvicorn" }, 215 - { name = "websockets", specifier = ">=15.0.1" }, 216 212 ] 217 213 218 214 [package.metadata.requires-dev] ··· 419 415 source = { registry = "https://pypi.org/simple" } 420 416 dependencies = [ 421 417 { name = "attrs" }, 422 - { name = "docstring-parser", marker = "python_full_version < '4.0'" }, 418 + { name = "docstring-parser", marker = "python_full_version < '4'" }, 423 419 { name = "rich" }, 424 420 { name = "rich-rst" }, 425 421 ]