@model StoryIntelligenceOverviewViewModel @{ ViewData["Title"] = "Analyse manuscript"; }

@Model.SelectedBookTitle

Analyse chapters with Story Intelligence

PlotDirector will read the approved chapter text, detect scene boundaries, and prepare scenes for your review before anything is created.

@if (TempData["OnboardingStoryIntelligenceError"] is string error) {
@error
} @if (TempData["OnboardingStoryIntelligenceMessage"] is string message) {
@message
} @if (Model.ExistingBatchID.HasValue) {

Analysis has already started

You can continue reviewing progress for the approved chapters.

Review scenes
} else {
Chapters @Model.ApprovedChapterCount

Approved chapters from your manuscript review.

Words @Model.ApprovedWordCount.ToString("N0")

Chapter text ready for analysis.

Creates Scenes only

Characters, locations, assets and relationships will not be imported yet.

Review You approve creation

Scenes are created only after the analysis completes and you choose Create scenes.

@if (!string.IsNullOrWhiteSpace(Model.Message)) {

@Model.Message

@if (Model.MissingChapterTextCount > 0) {

@Model.MissingChapterTextCount chapter(s) do not include scanned text. Scan the manuscript again before analysing.

}
}
}