@@ -95,8 +95,8 @@ TWITTER_MAX_RETRIES=3
9595TWITTER_BASE_RETRY_DELAY_MS = 5000
9696
9797# Twitter Posts Configuration
98- TWITTER_POSTS_LOOKBACK_DAYS = 60 # Days to look back for posts
99- TWITTER_MAX_TWEETS_TO_COLLECT = 50 # Maximum tweets to collect and store
98+ TWITTER_POSTS_LOOKBACK_DAYS = 30 # Days to look back for posts
99+ TWITTER_MAX_TWEETS_TO_COLLECT = 15 # Maximum tweets to collect and store
100100
101101# ===========================================
102102# FARCASTER CONFIGURATION (FREE - NO API KEYS REQUIRED)
@@ -106,11 +106,11 @@ TWITTER_MAX_TWEETS_TO_COLLECT=50 # Maximum tweets to collect and store
106106FARCASTER_MIN_DELAY_MS = 2000 # 2 seconds minimum delay
107107FARCASTER_MAX_DELAY_MS = 3000 # 3 seconds maximum delay
108108FARCASTER_MAX_RETRIES = 3 # Maximum retry attempts
109- FARCASTER_POSTS_LOOKBACK_DAYS = 60 # Days to look back for posts
110- FARCASTER_MAX_POSTS_PER_PROJECT = 50 # Maximum posts per project
109+ FARCASTER_POSTS_LOOKBACK_DAYS = 30 # Days to look back for posts
110+ FARCASTER_MAX_POSTS_PER_PROJECT = 15 # Maximum posts per project
111111FARCASTER_FID_CACHE_TTL = 86400 # FID cache TTL (24 hours)
112112FARCASTER_CASTS_CACHE_TTL = 3600 # Casts cache TTL (1 hour)
113- FARCASTER_BATCH_SIZE = 30 # Number of casts to fetch before filtering
113+ FARCASTER_BATCH_SIZE = 15 # Number of casts to fetch before filtering
114114
115115# Farcaster API endpoints (FREE - no API keys needed)
116116FARCASTER_FNAME_REGISTRY_URL = https://fnames.farcaster.xyz # FName Registry for FID lookup
@@ -136,12 +136,12 @@ JOB_MAX_RETRIES=3 # Retry attempts
136136# ===========================================
137137
138138# Social media storage configuration
139- SOCIAL_POST_MAX_COUNT = 50 # Max social posts to keep per project
139+ SOCIAL_POST_MAX_COUNT = 15 # Max social posts to keep per project
140140SOCIAL_POST_MAX_AGE_DAYS = 90 # Days to retain social posts
141141
142142# Social media frequency scoring configuration
143- SCORING_SOCIAL_FREQUENCY_DAYS = 60 # Days to consider for frequency calculation
144- SCORING_MIN_POSTS_FOR_FULL_FREQUENCY = 45 # Min posts for full frequency score
143+ SCORING_SOCIAL_FREQUENCY_DAYS = 30 # Days to consider for frequency calculation
144+ SCORING_MIN_POSTS_FOR_FULL_FREQUENCY = 10 # Min posts for full frequency score
145145
146146# ===========================================
147147# LLM INTEGRATION
0 commit comments