jamesbright commited on
Commit
37f93a9
·
verified ·
1 Parent(s): caf2d8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -56,7 +56,8 @@ class CostEstimationTool:
56
  """
57
  def estimate_project_cost(self, architecture_size, timeline_months):
58
  base_costs = {
59
- "development": 5000 * (architecture_size * 0.5),
 
60
  "infrastructure": 500 * (architecture_size * 0.3),
61
  "maintenance": 1000 * (architecture_size * 0.2)
62
  }
@@ -133,4 +134,4 @@ with gr.Blocks() as demo:
133
  outputs=[project_output, arch_output, cost_output, deploy_output, meeting_output])
134
 
135
  # Launch the Gradio App
136
- demo.launch(share=true)
 
56
  """
57
  def estimate_project_cost(self, architecture_size, timeline_months):
58
  base_costs = {
59
+ "development": 5000 * (architecture_size *
60
+ 0.5),
61
  "infrastructure": 500 * (architecture_size * 0.3),
62
  "maintenance": 1000 * (architecture_size * 0.2)
63
  }
 
134
  outputs=[project_output, arch_output, cost_output, deploy_output, meeting_output])
135
 
136
  # Launch the Gradio App
137
+ demo.launch(share=True)