15 lines
322 B
Python
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()
|