Kizuki
    Preparing search index...

    Function askMisses

    • Proposes what you missed: first, in plain code, the sentences whose meaningful words you barely used (see MISS_COVERAGE); then any sentences the model adds. Only real sentences of the material, at most MAX_MISSES. You confirm each one.

      Parameters

      • input: {
            ask: Ask;
            conceptName: string;
            corrections?: { passageId?: string; quote: string }[];
            notes: Map<string, string[]>;
            passages: {
                location: {
                    cells?: string;
                    heading?: string;
                    notes?: boolean;
                    page?: number;
                    paragraph?: number;
                    sheet?: string;
                    slide?: number;
                };
                materialId: string;
                ordinal: number;
                passageId: string;
                sectionId: string;
                text: string;
            }[];
            studentText: string;
            transcript?: string;
        }
        • ask: Ask
        • conceptName: string
        • Optionalcorrections?: { passageId?: string; quote: string }[]

          Text you corrected. It is never proposed as missed, because your correction wins.

        • notes: Map<string, string[]>
        • passages: {
              location: {
                  cells?: string;
                  heading?: string;
                  notes?: boolean;
                  page?: number;
                  paragraph?: number;
                  sheet?: string;
                  slide?: number;
              };
              materialId: string;
              ordinal: number;
              passageId: string;
              sectionId: string;
              text: string;
          }[]
        • studentText: string
        • Optionaltranscript?: string

      Returns Promise<
          {
              dropped: number;
              misses: { missId: string; quote: { passageId: string; text: string } }[];
          },
      >