Files
clientflow_backend/scripts/create_automatic_followups.py
2026-06-09 22:55:58 +01:00

16 lines
385 B
Python
Executable File

#!/usr/bin/env python3
"""Automatic follow-up task creation is disabled in the clean architecture.
The current design keeps LLM triage action_codes short and uses
opportunity/business events for pipeline follow-up state.
"""
def main() -> int:
print("Automatic legacy follow-up task creation is disabled.")
return 0
if __name__ == "__main__":
raise SystemExit(main())