Spaces:
Runtime error
Runtime error
| # Constants and Configuration | |
| # Contains constants and configuration values to avoid circular imports | |
| # Human-readable section titles for TOC and display | |
| SECTION_ORDER = [ | |
| "Executive Summary", | |
| "Company Profile", | |
| "Market Analysis", | |
| "Product or Service", | |
| "Business Model", | |
| "Marketing & Growth", | |
| "Operations Plan", | |
| "Management Team", | |
| "Financial Plan & Funding" | |
| ] | |
| # Database helper constants | |
| SECTION_MAP = { | |
| "prompt_ExecutiveSummary": ("executiveSummary", "executiveSummaryComplete", "executiveSummaryGenerating"), | |
| "prompt_CompanyProfile": ("companyProfile", "companyProfileComplete", "companyProfileGenerating"), | |
| "prompt_MarketAnalysis": ("marketAnalysis", "marketAnalysisComplete", "marketAnalysisGenerating"), | |
| "prompt_ProductOrService": ("productOrService", "productOrServiceComplete", "productOrServiceGenerating"), | |
| "prompt_BusinessModel": ("businessModel", "businessModelComplete", "businessModelGenerating"), | |
| "prompt_MarketingGrowth": ("marketingGrowth", "marketingGrowthComplete", "marketingGrowthGenerating"), | |
| "prompt_OperationsPlan": ("operationsPlan", "operationsPlanComplete", "operationsPlanGenerating"), | |
| "prompt_ManagementTeam": ("managementTeam", "managementTeamComplete", "managementTeamGenerating"), | |
| "prompt_FinancialPlanFunding": ("financialPlanFunding", "financialPlanFundingComplete", "financialPlanFundingGenerating"), | |
| } | |
| # Database column names for sections | |
| SECTION_COLUMNS = [ | |
| "executiveSummary", | |
| "companyProfile", | |
| "marketAnalysis", | |
| "productOrService", | |
| "businessModel", | |
| "marketingGrowth", | |
| "operationsPlan", | |
| "managementTeam", | |
| "financialPlanFunding", | |
| ] | |