You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: dedicated HR automation AI generator endpoint
- Add /ai/hr-automation-generator with HR-specific schema (9 triggers, 10 actions)
- Backend handles system prompt, JSON parsing, and module tagging
- Wire HR frontend to use dedicated endpoint instead of generic /ai/chat
- Use configurable workerUrl from SIMPATICO_CONFIG instead of hardcoded URL
- Backend enforces module:'hr' tag on generated rules automatically
if(!query)thrownewValidationError("query is required");
3946
+
if(!env.AI)thrownewServiceUnavailableError("AI");
3947
+
3948
+
constsystemPrompt=`You are an enterprise HR automation expert. Given a description, output ONLY valid JSON (no markdown, no backticks) for an HR workflow automation rule.
0 commit comments