Changes between Version 2 and Version 3 of WriterReceivesAISuggestions


Ignore:
Timestamp:
08/24/26 16:01:15 (13 days ago)
Author:
211099
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WriterReceivesAISuggestions

    v2 v3  
    88**2.**  The system retrieves all pending AI suggestions for that chapter.
    99{{{#!sql
    10 SELECT ai.suggestion_id, ai.original_text, ai.suggested_text, st.suggestion_type, ai.accepted
     10SELECT ai.suggestion_id, ai.original_text, ai.suggested_text, ai.suggestion_type, ai.accepted
    1111FROM AI_SUGGESTION ai
    12 JOIN SUGGESTION_TYPE st ON ai.suggestion_id = st.suggestion_id
    1312JOIN NEED_APPROVAL na ON ai.suggestion_id = na.suggestion_id
    1413WHERE na.chapter_id = 1 AND ai.accepted = FALSE;