Changes between Version 2 and Version 3 of WriterReceivesAISuggestions
- Timestamp:
- 08/24/26 16:01:15 (13 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WriterReceivesAISuggestions
v2 v3 8 8 **2.** The system retrieves all pending AI suggestions for that chapter. 9 9 {{{#!sql 10 SELECT ai.suggestion_id, ai.original_text, ai.suggested_text, st.suggestion_type, ai.accepted10 SELECT ai.suggestion_id, ai.original_text, ai.suggested_text, ai.suggestion_type, ai.accepted 11 11 FROM AI_SUGGESTION ai 12 JOIN SUGGESTION_TYPE st ON ai.suggestion_id = st.suggestion_id13 12 JOIN NEED_APPROVAL na ON ai.suggestion_id = na.suggestion_id 14 13 WHERE na.chapter_id = 1 AND ai.accepted = FALSE;
