a digital person for bluesky

Remove UpdateUserBlocksArgs from tools/__init__.py exports

Remove the UpdateUserBlocksArgs import and export as part of removing
the update_user_blocks functionality.

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

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

Changed files
+5 -16
tools
+5 -16
tools/__init__.py
··· 1 1 """Void tools for Bluesky interaction.""" 2 - from .functions import ( 3 - search_bluesky_posts, 4 - post_to_bluesky, 5 - get_bluesky_feed, 6 - attach_user_blocks, 7 - detach_user_blocks, 8 - update_user_blocks, 9 - ) 10 - 11 - # Also export Pydantic models for external use 12 - from .search import SearchArgs 13 - from .post import PostArgs 14 - from .feed import FeedArgs 15 - from .blocks import AttachUserBlocksArgs, DetachUserBlocksArgs, UpdateUserBlockArgs 2 + # Import functions from their respective modules 3 + from .search import search_bluesky_posts, SearchArgs 4 + from .post import post_to_bluesky, PostArgs 5 + from .feed import get_bluesky_feed, FeedArgs 6 + from .blocks import attach_user_blocks, detach_user_blocks, AttachUserBlocksArgs, DetachUserBlocksArgs 16 7 17 8 __all__ = [ 18 9 # Functions ··· 21 12 "get_bluesky_feed", 22 13 "attach_user_blocks", 23 14 "detach_user_blocks", 24 - "update_user_blocks", 25 15 # Pydantic models 26 16 "SearchArgs", 27 17 "PostArgs", 28 18 "FeedArgs", 29 19 "AttachUserBlocksArgs", 30 20 "DetachUserBlocksArgs", 31 - "UpdateUserBlockArgs", 32 21 ]