Spaces:
Paused
Paused
File size: 32,442 Bytes
28dd5a4 fcfbc38 28dd5a4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 | """
Viraltest Environment — RL-Based Creator Optimization Simulation.
Simulates a social media creator's weekly posting lifecycle.
The agent decides when to post, what format, which tags, and how
to differentiate from competitors, while managing burnout.
"""
import random
from collections import defaultdict
from dataclasses import dataclass, field
from typing import Any, Dict, List, Optional
from uuid import uuid4
from openenv.core.env_server.interfaces import Environment
from openenv.core.env_server.types import State
try:
from ..models import ScheduledAction, ViraltestAction, ViraltestObservation
except ImportError:
from models import ScheduledAction, ViraltestAction, ViraltestObservation
# ---------------------------------------------------------------------------
# Constants (research-backed)
# ---------------------------------------------------------------------------
TASK_HORIZON = 7 # 7 daily steps (each step simulates 24 hours internally)
CONTENT_ENERGY_COST = {
"reel": 0.25,
"carousel": 0.20,
"story": 0.08,
"text_post": 0.06,
}
BASE_ENGAGEMENT = {
"reel": 0.52,
"carousel": 0.55,
"story": 0.30,
"text_post": 0.37,
}
REACH_MULT = {
"reel": 2.25,
"carousel": 1.0,
"story": 0.5,
"text_post": 0.44,
}
TAG_POOL = [
# Tech
"ai", "ml", "coding", "startup", "saas", "devtools",
# Lifestyle
"fitness", "travel", "food", "wellness", "fashion", "photography",
# Trending (base set — rotated daily)
"summer", "worldcup", "election", "newyear", "oscars", "climate",
# Niche
"productivity", "minimalism", "stoic", "web3", "gaming", "crypto",
# Broad
"motivation", "tips", "howto", "viral", "trending", "growth",
]
TOPIC_CATEGORIES = {
"tech": ["AI tools", "coding tips", "startup life", "tech news", "SaaS growth", "dev workflow"],
"lifestyle": ["fitness routine", "travel guide", "food recipe", "wellness tips", "fashion haul", "photo editing"],
"business": ["growth hacks", "marketing strategy", "creator economy", "monetization", "brand deals", "analytics"],
}
VALID_TASKS = ("weekly_engage", "weekly_strategic", "weekly_competitive")
# Hour multipliers (Buffer 9.6M post study)
PEAK_HOURS = {
"weekday_morning": (9, 12, 1.3),
"weekday_peak": (12, 15, 1.4),
"evening": (18, 20, 1.25),
"late_evening": (20, 23, 1.1),
"night": (23, 6, 0.5),
"off_hours": (6, 9, 0.8),
}
WEEKEND_PENALTY = 0.7
PEAK_DAYS = (1, 2, 3) # Tue, Wed, Thu (0=Mon)
@dataclass
class CompetitorState:
name: str
niche_topics: List[str]
preferred_types: List[str]
posting_frequency: float
base_engagement: float
tag_preferences: List[str]
recent_posts: List[Dict[str, Any]] = field(default_factory=list)
COMPETITOR_PROFILES = [
{
"name": "creator_alpha",
"niche_topics": ["AI tools", "coding tips", "tech news"],
"preferred_types": ["reel", "carousel"],
"posting_frequency": 2.5,
"base_engagement": 0.45,
"tag_preferences": ["ai", "coding", "tech news"],
},
{
"name": "creator_beta",
"niche_topics": ["growth hacks", "marketing strategy", "creator economy"],
"preferred_types": ["carousel", "text_post"],
"posting_frequency": 1.8,
"base_engagement": 0.40,
"tag_preferences": ["growth", "tips", "viral"],
},
{
"name": "creator_gamma",
"niche_topics": ["fitness routine", "wellness tips", "motivation"],
"preferred_types": ["reel", "story"],
"posting_frequency": 3.0,
"base_engagement": 0.38,
"tag_preferences": ["fitness", "wellness", "motivation"],
},
]
INITIAL_FOLLOWERS = 10000
REST_RECOVERY = 0.12
CREATE_CONTENT_COST = 0.05
REPETITION_ENERGY_PENALTY = 0.05
AUDIENCE_FATIGUE_THRESHOLD_1 = 3
AUDIENCE_FATIGUE_THRESHOLD_2 = 5
FOLLOWER_DECAY_HOURS = 48
ALGORITHM_PENALTY_MULT = 0.6
ALGORITHM_PENALTY_DURATION = 2
# Sleep mechanics (research-backed: Frontiers Neuroscience 2025, Frontiers Human Neuroscience 2014)
# - Cognitive performance follows a continuous decay curve, not step functions
# - Full night deprivation (~24hrs) impairs performance by ~50%
# - Uses exponential decay: quality = 1.0 * (0.5 ^ ((hours - optimal) / halflife))
SLEEP_OPTIMAL_AWAKE = 14 # Hours awake with no performance impact
SLEEP_HALFLIFE_HOURS = 10 # Hours beyond optimal for quality to halve
SLEEP_MIN_QUALITY = 0.30 # Floor for sleep-based quality (can't go below 30%)
SLEEP_ENERGY_DRAIN_START = 16 # Hours awake before extra energy drain kicks in
SLEEP_ENERGY_DRAIN_RATE = 0.015 # Energy drain per hour when sleep deprived
SLEEP_RECOVERY_PER_REST = 2 # Hours of "sleep credit" per rest action (rest = nap)
# ---------------------------------------------------------------------------
# Environment
# ---------------------------------------------------------------------------
class ViraltestEnvironment(Environment):
"""
Weekly creator optimization simulation.
The agent manages a social media creator's posting strategy over 7 daily
steps (each day runs 24 simulated hours from a sparse schedule), balancing
engagement, energy, tags, and competition.
"""
SUPPORTS_CONCURRENT_SESSIONS: bool = True
def __init__(self) -> None:
self._state = State(episode_id=str(uuid4()), step_count=0)
self._task = "weekly_engage"
self._rng = random.Random(42)
self._init_state()
def _init_state(self) -> None:
self._energy = 1.0
self._followers = INITIAL_FOLLOWERS
self._initial_followers = INITIAL_FOLLOWERS
self._hour = 9
self._day = 0 # 0=Mon
self._posts_today = 0
self._last_post_types: List[str] = []
self._time_since_last_post = 0
self._engagement_history: List[float] = []
self._tag_history: Dict[str, List[float]] = defaultdict(list)
self._content_queue = 0
self._unique_tags_used: set = set()
self._unique_content_types: set = set()
self._energy_history: List[float] = [1.0]
self._posting_steps = 0
self._episode_done = False
self._last_topic: Optional[str] = None
self._final_observation: Optional[ViraltestObservation] = None
self._unique_topic_steps = 0
self._days_with_good_posts: set = set()
self._total_engagement = 0.0
self._posts_per_day: Dict[int, int] = defaultdict(int)
self._algorithm_penalty_remaining = 0
self._trending_topics = self._pick_trending_topics()
self._trending_tags = self._pick_trending_tags()
self._competitors = [CompetitorState(**p) for p in COMPETITOR_PROFILES]
# Sleep state: creator starts well-rested at 9am (awake since ~7am)
self._hours_since_sleep = 2 # Woke up 2 hours ago at start (9am)
self._sleep_debt = 0.0 # 0 = fully rested, 1 = severe deprivation
# ----- trend rotation -----
def _pick_trending_topics(self) -> List[str]:
all_topics = []
for cat_topics in TOPIC_CATEGORIES.values():
all_topics.extend(cat_topics)
return self._rng.sample(all_topics, min(3, len(all_topics)))
def _pick_trending_tags(self) -> List[str]:
return self._rng.sample(TAG_POOL, min(5, len(TAG_POOL)))
def _rotate_trends(self) -> None:
self._trending_topics = self._pick_trending_topics()
self._trending_tags = self._pick_trending_tags()
# ----- hour multiplier -----
def _get_hour_multiplier(self) -> float:
h = self._hour
d = self._day
is_weekend = d >= 5
base = WEEKEND_PENALTY if is_weekend else 1.0
if 12 <= h < 15 and d in PEAK_DAYS:
return base * 1.4
if 9 <= h < 12:
return base * 1.3
if 18 <= h < 20:
return base * 1.25
if 20 <= h < 23:
return base * 1.1
if h >= 23 or h < 6:
return base * 0.5
return base * 0.8
# ----- quality -----
def _get_quality_modifier(self) -> float:
"""
Quality affected by both energy and sleep debt.
Sleep uses exponential decay curve (not step function):
- No impact until SLEEP_OPTIMAL_AWAKE hours (14hrs)
- Then: quality = 0.5 ^ ((hours - optimal) / halflife)
- At 24hrs awake: ~50% quality (matches research)
- Floor at SLEEP_MIN_QUALITY (30%)
"""
# Energy component (existing logic)
if self._energy > 0.5:
energy_factor = 1.0
else:
energy_factor = max(0.48, self._energy * 1.5)
# Sleep component - exponential decay curve
if self._hours_since_sleep <= SLEEP_OPTIMAL_AWAKE:
sleep_factor = 1.0
else:
hours_over = self._hours_since_sleep - SLEEP_OPTIMAL_AWAKE
# Exponential decay: halves every SLEEP_HALFLIFE_HOURS
sleep_factor = 0.5 ** (hours_over / SLEEP_HALFLIFE_HOURS)
sleep_factor = max(SLEEP_MIN_QUALITY, sleep_factor)
return energy_factor * sleep_factor
# ----- tags -----
def _calc_tag_boost(self, tags: Optional[List[str]]) -> float:
if not tags:
return 1.0
trending_count = sum(1 for t in tags if t in self._trending_tags)
perf_values = [
self._tag_performance_avg(t) for t in tags if self._tag_performance_avg(t) > 0
]
perf_avg = sum(perf_values) / len(perf_values) if perf_values else 0.0
return 1.0 + 0.1 * trending_count + 0.05 * perf_avg
def _tag_performance_avg(self, tag: str) -> float:
history = self._tag_history.get(tag, [])
if not history:
return 0.0
window = history[-5:]
return sum(window) / len(window)
def _get_tag_performance_dict(self) -> Dict[str, float]:
return {tag: self._tag_performance_avg(tag) for tag in self._unique_tags_used}
# ----- competitors -----
def _advance_competitors(self) -> None:
for comp in self._competitors:
for p in comp.recent_posts:
p["hours_ago"] += 1
comp.recent_posts = [p for p in comp.recent_posts if p["hours_ago"] < 48]
post_prob = comp.posting_frequency / 24.0
if self._rng.random() < post_prob:
ct = self._rng.choice(comp.preferred_types)
topic = self._rng.choice(comp.niche_topics)
tags = self._rng.sample(
comp.tag_preferences, min(3, len(comp.tag_preferences))
)
eng = comp.base_engagement + self._rng.uniform(-0.1, 0.1)
eng = max(0.0, min(1.0, eng))
comp.recent_posts.append({
"content_type": ct,
"topic": topic,
"tags": tags,
"engagement": round(eng, 3),
"hours_ago": 0,
})
def _get_competitor_recent_posts(self, limit: int = 5) -> List[Dict[str, Any]]:
all_posts: List[Dict[str, Any]] = []
for comp in self._competitors:
for p in comp.recent_posts:
all_posts.append(p)
all_posts.sort(key=lambda x: x["hours_ago"])
return all_posts[:limit]
def _get_competitor_avg_engagement(self) -> float:
engagements = []
for comp in self._competitors:
for p in comp.recent_posts:
engagements.append(p["engagement"])
return sum(engagements) / len(engagements) if engagements else 0.0
def _calc_niche_saturation(self, topic: Optional[str]) -> float:
if not topic:
return 0.0
recent_topics = []
for comp in self._competitors:
for p in comp.recent_posts:
if p["hours_ago"] < 12:
recent_topics.append(p["topic"].lower())
if not recent_topics:
return 0.0
topic_lower = topic.lower()
overlap = sum(1 for t in recent_topics if _topic_overlap(topic_lower, t))
return min(1.0, overlap / max(1, len(recent_topics)))
def _calc_competitor_diff(self, topic: Optional[str]) -> float:
if not topic:
return 1.0
saturation = self._calc_niche_saturation(topic)
recent_topics = []
for comp in self._competitors:
for p in comp.recent_posts:
if p["hours_ago"] < 12:
recent_topics.append(p["topic"].lower())
topic_lower = topic.lower()
has_overlap = any(_topic_overlap(topic_lower, t) for t in recent_topics)
if not has_overlap:
return 1.3
if saturation > 0.7:
return 0.6
return 1.0
# ----- core API -----
def reset(
self,
seed: Optional[int] = None,
episode_id: Optional[str] = None,
**kwargs: Any,
) -> ViraltestObservation:
self._task = kwargs.get("task", "weekly_engage")
if self._task not in VALID_TASKS:
self._task = "weekly_engage"
self._rng = random.Random(seed if seed is not None else 42)
self._state = State(
episode_id=episode_id or str(uuid4()), step_count=0
)
self._init_state()
return self._build_observation(reward=0.0, error=None)
def step(self, action: ViraltestAction, **kwargs: Any) -> ViraltestObservation: # type: ignore[override]
"""Process a daily step: run 24 hourly sub-steps using the sparse schedule."""
if self._episode_done and self._final_observation is not None:
return self._final_observation
self._state.step_count += 1
schedule: Dict[int, ScheduledAction] = {}
errors: List[str] = []
for sa in action.scheduled_actions:
if sa.hour < 0 or sa.hour > 23:
errors.append(f"Invalid hour: {sa.hour}")
continue
err = self._validate_scheduled_action(sa)
if err:
errors.append(f"hour {sa.hour}: {err}")
continue
schedule[sa.hour] = sa
daily_engagement = 0.0
daily_reward = 0.0
daily_posts = 0
energy_min = self._energy
burned_out = False
for hour in range(24):
if burned_out:
break
if hour in schedule:
sa = schedule[hour]
hourly_eng, hourly_reward = self._process_hour_action(sa)
else:
hourly_eng, hourly_reward = self._process_hour_rest()
daily_engagement += hourly_eng
daily_reward += hourly_reward
if hourly_eng > 0:
daily_posts += 1
energy_min = min(energy_min, self._energy)
self._advance_competitors()
self._advance_time()
self._energy_history.append(self._energy)
if self._energy <= 0.0:
burned_out = True
day_posts = self._posts_per_day.get(self._day - 1, 0) if self._day > 0 else self._posts_per_day.get(0, 0)
prev_day = max(0, self._day - 1)
if 1 <= self._posts_per_day.get(prev_day, 0) <= 2:
self._days_with_good_posts.add(prev_day)
avg_reward = daily_reward / 24.0
error_str = "; ".join(errors) if errors else None
done = self._state.step_count >= TASK_HORIZON or self._energy <= 0.0
if done:
self._episode_done = True
grader_score = self._run_grader()
self._final_observation = self._build_observation(
reward=round(avg_reward, 4),
error=error_str,
done=True,
grader_score=grader_score,
daily_total_engagement=daily_engagement,
daily_posts_made=daily_posts,
daily_energy_min=energy_min,
)
return self._final_observation
return self._build_observation(
reward=round(avg_reward, 4),
error=error_str,
daily_total_engagement=daily_engagement,
daily_posts_made=daily_posts,
daily_energy_min=energy_min,
)
def _process_hour_action(self, sa: ScheduledAction) -> tuple:
"""Process a single scheduled (non-rest) hourly action. Returns (engagement, reward)."""
engagement = 0.0
if sa.action_type == "post":
cost = CONTENT_ENERGY_COST.get(sa.content_type, 0.1) # type: ignore[arg-type]
if self._content_queue > 0:
cost *= 0.5
self._content_queue -= 1
if len(self._last_post_types) >= 3 and all(
t == sa.content_type for t in self._last_post_types[-3:]
):
cost += REPETITION_ENERGY_PENALTY
self._energy = max(0.0, self._energy - cost)
self._unique_content_types.add(sa.content_type) # type: ignore[arg-type]
if self._energy <= 0.0:
engagement = 0.0
else:
base = BASE_ENGAGEMENT.get(sa.content_type, 0.3) # type: ignore[arg-type]
reach = REACH_MULT.get(sa.content_type, 1.0) # type: ignore[arg-type]
hour_mult = self._get_hour_multiplier()
quality = self._get_quality_modifier()
tag_boost = self._calc_tag_boost(sa.tags)
trending_bonus = 1.5 if self._is_topic_trending(sa.topic) else 1.0
comp_diff = self._calc_competitor_diff(sa.topic)
fatigue = 1.0
if self._posts_today >= AUDIENCE_FATIGUE_THRESHOLD_2:
fatigue = 0.1
elif self._posts_today >= AUDIENCE_FATIGUE_THRESHOLD_1:
fatigue = 0.5
algo_mult = 1.0
if self._algorithm_penalty_remaining > 0:
algo_mult = ALGORITHM_PENALTY_MULT
self._algorithm_penalty_remaining -= 1
engagement = (
base * reach * hour_mult * quality * tag_boost
* trending_bonus * comp_diff * fatigue * algo_mult
)
engagement = min(engagement, 5.0)
self._last_topic = sa.topic
if sa.tags and engagement > 0:
for tag in sa.tags:
tag_lower = tag.lower()
self._tag_history[tag_lower].append(engagement)
self._unique_tags_used.add(tag_lower)
self._engagement_history.append(engagement)
self._total_engagement += engagement
self._posting_steps += 1
if self._calc_competitor_diff(sa.topic) >= 1.3:
self._unique_topic_steps += 1
self._last_post_types.append(sa.content_type) # type: ignore[arg-type]
if len(self._last_post_types) > 3:
self._last_post_types = self._last_post_types[-3:]
self._posts_today += 1
self._posts_per_day[self._day] += 1
self._time_since_last_post = 0
if engagement > 0:
self._followers += int(engagement * 100)
elif sa.action_type == "create_content":
self._energy = max(0.0, self._energy - CREATE_CONTENT_COST)
self._content_queue += 1
self._time_since_last_post += 1
if self._time_since_last_post >= FOLLOWER_DECAY_HOURS:
self._followers = max(0, self._followers - int(self._followers * 0.005))
if self._algorithm_penalty_remaining == 0:
self._algorithm_penalty_remaining = ALGORITHM_PENALTY_DURATION
reward = 0.0 if self._energy <= 0.0 else self._compute_hourly_reward(sa, engagement)
return engagement, reward
def _process_hour_rest(self) -> tuple:
"""Process a rest hour. Returns (0.0, reward)."""
self._energy = min(1.0, self._energy + REST_RECOVERY)
self._hours_since_sleep = max(0, self._hours_since_sleep - SLEEP_RECOVERY_PER_REST)
self._sleep_debt = max(0.0, self._sleep_debt - 0.1)
self._time_since_last_post += 1
if self._time_since_last_post >= FOLLOWER_DECAY_HOURS:
self._followers = max(0, self._followers - int(self._followers * 0.005))
if self._algorithm_penalty_remaining == 0:
self._algorithm_penalty_remaining = ALGORITHM_PENALTY_DURATION
reward = 0.0 if self._energy <= 0.0 else self._compute_rest_reward()
return 0.0, reward
@property
def state(self) -> State:
return self._state
# ----- validation -----
def _validate_scheduled_action(self, sa: ScheduledAction) -> Optional[str]:
if sa.action_type not in ("post", "create_content"):
return f"Invalid action_type: {sa.action_type}"
if sa.action_type == "post":
if not sa.content_type:
return "content_type is required when posting"
if sa.content_type not in CONTENT_ENERGY_COST:
return f"Invalid content_type: {sa.content_type}"
if not sa.topic or not sa.topic.strip():
return "topic is required when posting"
if len(sa.topic) > 200:
return "topic must be ≤200 characters"
if sa.tags:
valid = [t for t in sa.tags if t.lower() in TAG_POOL]
sa.tags = valid if valid else None
return None
# ----- trending -----
def _is_topic_trending(self, topic: Optional[str]) -> bool:
if not topic:
return False
topic_lower = topic.lower()
return any(t.lower() in topic_lower for t in self._trending_topics)
# ----- reward -----
def _compute_hourly_reward(self, sa: ScheduledAction, engagement: float) -> float:
eng_component = min(1.0, engagement / 2.0) * 0.3
prev_energy = self._energy_history[-2] if len(self._energy_history) >= 2 else 1.0
energy_delta = self._energy - prev_energy
energy_component = max(0.0, min(1.0, (energy_delta + 0.3) / 0.6)) * 0.15
day_posts = self._posts_per_day.get(self._day, 0)
if 1 <= day_posts <= 2:
consistency = 1.0
elif day_posts == 0 or day_posts == 3:
consistency = 0.5
else:
consistency = 0.0
consistency_component = consistency * 0.15
tag_component = 0.0
if sa.action_type == "post" and sa.tags:
trending_match = sum(1 for t in sa.tags if t.lower() in self._trending_tags) / 5.0
tag_component = min(1.0, trending_match + 0.3) * 0.15
comp_component = 0.0
if sa.action_type == "post":
diff = self._calc_competitor_diff(sa.topic)
comp_component = min(1.0, diff / 1.3) * 0.15
burnout_penalty = 0.1 if self._energy < 0.2 else 0.0
raw = eng_component + energy_component + consistency_component + tag_component + comp_component - burnout_penalty
return max(0.0, min(1.0, raw))
def _compute_rest_reward(self) -> float:
prev_energy = self._energy_history[-2] if len(self._energy_history) >= 2 else 1.0
energy_delta = self._energy - prev_energy
energy_component = max(0.0, min(1.0, (energy_delta + 0.3) / 0.6)) * 0.15
day_posts = self._posts_per_day.get(self._day, 0)
if 1 <= day_posts <= 2:
consistency = 1.0
elif day_posts == 0 or day_posts == 3:
consistency = 0.5
else:
consistency = 0.0
consistency_component = consistency * 0.15
burnout_penalty = 0.1 if self._energy < 0.2 else 0.0
raw = energy_component + consistency_component - burnout_penalty
return max(0.0, min(1.0, raw))
# ----- time -----
def _advance_time(self) -> None:
self._hour += 1
# Track hours since sleep (always increases unless resting)
self._hours_since_sleep += 1
# Sleep deprivation drains extra energy (smooth ramp after threshold)
if self._hours_since_sleep > SLEEP_ENERGY_DRAIN_START:
hours_over = self._hours_since_sleep - SLEEP_ENERGY_DRAIN_START
# Drain increases smoothly the longer you're awake
drain = SLEEP_ENERGY_DRAIN_RATE * (1 + hours_over * 0.1)
self._energy = max(0.0, self._energy - drain)
# Update sleep debt (smooth accumulation based on hours awake)
if self._hours_since_sleep > SLEEP_OPTIMAL_AWAKE:
hours_over = self._hours_since_sleep - SLEEP_OPTIMAL_AWAKE
# Debt accumulates faster the longer awake (quadratic-ish curve)
debt_rate = 0.01 * (1 + hours_over * 0.05)
self._sleep_debt = min(1.0, self._sleep_debt + debt_rate)
if self._hour >= 24:
self._hour = 0
self._day += 1
self._posts_today = 0
self._rotate_trends()
# ----- observation builder -----
def _build_observation(
self,
reward: float,
error: Optional[str],
done: bool = False,
grader_score: Optional[float] = None,
daily_total_engagement: float = 0.0,
daily_posts_made: int = 0,
daily_energy_min: float = 1.0,
) -> ViraltestObservation:
recent_eng = self._engagement_history[-10:] if self._engagement_history else []
eng_rate = sum(recent_eng) / len(recent_eng) if recent_eng else 0.0
meta: Dict[str, Any] = {"step": self._state.step_count, "task": self._task}
if grader_score is not None:
meta["grader_score"] = round(grader_score, 4)
return ViraltestObservation(
current_hour=self._hour,
day_of_week=self._day % 7,
days_elapsed=self._day,
creator_energy=round(self._energy, 3),
hours_since_sleep=self._hours_since_sleep,
sleep_debt=round(self._sleep_debt, 3),
follower_count=self._followers,
engagement_rate=round(eng_rate, 4),
posts_today=self._posts_today,
time_since_last_post=self._time_since_last_post,
trending_topics=list(self._trending_topics),
content_queue_size=self._content_queue,
last_post_type=self._last_post_types[-1] if self._last_post_types else "none",
tag_performance=self._get_tag_performance_dict(),
trending_tags=list(self._trending_tags),
competitor_recent_posts=self._get_competitor_recent_posts(),
competitor_avg_engagement=round(self._get_competitor_avg_engagement(), 4),
niche_saturation=round(self._calc_niche_saturation(self._last_topic), 3),
daily_total_engagement=round(daily_total_engagement, 4),
daily_posts_made=daily_posts_made,
daily_energy_min=round(daily_energy_min, 3),
grader_score=round(grader_score, 4) if grader_score is not None else None,
error=error,
done=done,
reward=round(reward, 4),
metadata=meta,
)
# ----- graders -----
def _run_grader(self) -> float:
if self._task == "weekly_engage":
return self._grade_weekly_engage()
elif self._task == "weekly_strategic":
return self._grade_weekly_strategic()
elif self._task == "weekly_competitive":
return self._grade_weekly_competitive()
return 0.0
def _theoretical_max_engagement(self) -> float:
best_base = max(BASE_ENGAGEMENT.values())
best_reach = max(REACH_MULT.values())
peak_mult = 1.4
quality = 1.0
posts_per_day = 2
days = 7
return best_base * best_reach * peak_mult * quality * posts_per_day * days
def _grade_weekly_engage(self) -> float:
theoretical_max = self._theoretical_max_engagement()
if theoretical_max <= 0:
return 0.0
raw = min(1.0, self._total_engagement / theoretical_max)
if self._energy <= 0.0:
raw *= 0.3 # burnout penalty even on easy task
return raw
def _grade_weekly_strategic(self) -> float:
# Burnout = severe penalty (not total fail like competitive, but close)
if self._energy <= 0.0:
return max(0.0, min(0.15, self._total_engagement * 0.01))
# Engagement: 35%
theoretical_max = self._theoretical_max_engagement()
norm_eng = min(1.0, self._total_engagement / theoretical_max) if theoretical_max > 0 else 0.0
# Tag score: 25% (40% discovery + 60% exploitation)
positive_tags = sum(1 for t in self._unique_tags_used if self._tag_performance_avg(t) > 0)
tag_discovery = min(1.0, positive_tags / 30.0)
top_perfs = sorted(
[self._tag_performance_avg(t) for t in self._unique_tags_used], reverse=True
)[:3]
tag_exploitation = (sum(top_perfs) / len(top_perfs)) if top_perfs else 0.0
tag_exploitation = min(1.0, tag_exploitation / 2.0)
tag_score = 0.4 * tag_discovery + 0.6 * tag_exploitation
# Avg energy: 25%
avg_energy = sum(self._energy_history) / len(self._energy_history) if self._energy_history else 0.0
# Consistency: 15%
consistency = len(self._days_with_good_posts) / 7.0
raw = 0.35 * norm_eng + 0.25 * tag_score + 0.25 * avg_energy + 0.15 * consistency
# Constraints
min_energy = min(self._energy_history) if self._energy_history else 0.0
if min_energy < 0.2:
raw *= 0.4 # crashed hard
elif min_energy < 0.3:
raw = min(raw, 0.45)
if len(self._unique_tags_used) < 5:
raw *= 0.7
return max(0.0, min(1.0, raw))
def _grade_weekly_competitive(self) -> float:
# Burnout = total fail
if self._energy <= 0.0:
return 0.0
# Engagement: 25%
theoretical_max = self._theoretical_max_engagement()
norm_eng = min(1.0, self._total_engagement / theoretical_max) if theoretical_max > 0 else 0.0
# Tag score: 20%
positive_tags = sum(1 for t in self._unique_tags_used if self._tag_performance_avg(t) > 0)
tag_discovery = min(1.0, positive_tags / 30.0)
top_perfs = sorted(
[self._tag_performance_avg(t) for t in self._unique_tags_used], reverse=True
)[:3]
tag_exploitation = (sum(top_perfs) / len(top_perfs)) if top_perfs else 0.0
tag_exploitation = min(1.0, tag_exploitation / 2.0)
tag_score = 0.4 * tag_discovery + 0.6 * tag_exploitation
# Follower growth: 20%
growth = (self._followers - self._initial_followers) / self._initial_followers if self._initial_followers > 0 else 0.0
target_growth = 0.05
norm_growth = min(1.0, max(0.0, growth / target_growth))
# Competitor outperformance: 15%
comp_avg = self._get_competitor_avg_engagement()
my_avg = self._total_engagement / self._posting_steps if self._posting_steps > 0 else 0.0
outperformance = my_avg / comp_avg if comp_avg > 0 else 1.0
norm_outperformance = min(1.0, outperformance / 1.5)
# Differentiation: 10%
differentiation = self._unique_topic_steps / self._posting_steps if self._posting_steps > 0 else 0.0
# Energy floor: 10%
min_energy = min(self._energy_history) if self._energy_history else 0.0
energy_floor = min(1.0, max(0.0, min_energy))
raw = (
0.25 * norm_eng
+ 0.20 * tag_score
+ 0.20 * norm_growth
+ 0.15 * norm_outperformance
+ 0.10 * differentiation
+ 0.10 * energy_floor
)
# Constraints
if len(self._unique_content_types) < 3:
raw *= 0.5
if len(self._unique_tags_used) < 8:
raw *= 0.7
return max(0.0, min(1.0, raw))
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def _topic_overlap(topic_a: str, topic_b: str) -> bool:
"""Check if two topics have significant word overlap."""
words_a = set(topic_a.split())
words_b = set(topic_b.split())
if not words_a or not words_b:
return False
common = words_a & words_b
return len(common) / min(len(words_a), len(words_b)) >= 0.5
|