Files
ADHDbot/agentic_review.py
2025-11-11 23:11:59 -06:00

15 lines
322 B
Python

import os
from AgenticWorkflow import AgenticWorkflow
def main():
user_id = os.getenv("TARGET_USER_ID")
operator_hint = os.getenv("AGENTIC_OPERATOR_HINT")
response = AgenticWorkflow.runHourlyReview(user_id, operator_hint)
print(f"[agentic] response: {response}")
if __name__ == "__main__":
main()