Release v4928.1.4.2 stable
This commit is contained in:
15
scripts/create_automatic_followups.py
Executable file
15
scripts/create_automatic_followups.py
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/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())
|
||||
Reference in New Issue
Block a user