planify / app /constants.py
devZenaight's picture
Test Planify V1
8126b08
Raw
History Blame Contribute Delete
1.68 kB
# 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",
]