a digital person for bluesky
42
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update imports in register_tools.py to use module-specific imports

Update register_tools.py to import functions and schemas directly
from their respective modules instead of the now-removed functions.py.
This aligns with the new modular tool organization.

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

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

+5 -15
+5 -15
register_tools.py
··· 9 9 from rich.console import Console 10 10 from rich.table import Table 11 11 12 - # Import standalone functions 13 - from tools.functions import ( 14 - search_bluesky_posts, 15 - post_to_bluesky, 16 - get_bluesky_feed, 17 - attach_user_blocks, 18 - detach_user_blocks, 19 - # update_user_blocks, 20 - ) 21 - 22 - # Import Pydantic models for args_schema 23 - from tools.search import SearchArgs 24 - from tools.post import PostArgs 25 - from tools.feed import FeedArgs 26 - from tools.blocks import AttachUserBlocksArgs, DetachUserBlocksArgs #, UpdateUserBlockArgs 12 + # Import standalone functions and their schemas 13 + from tools.search import search_bluesky_posts, SearchArgs 14 + from tools.post import post_to_bluesky, PostArgs 15 + from tools.feed import get_bluesky_feed, FeedArgs 16 + from tools.blocks import attach_user_blocks, detach_user_blocks, AttachUserBlocksArgs, DetachUserBlocksArgs 27 17 28 18 load_dotenv() 29 19 logging.basicConfig(level=logging.INFO)