Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 *
|
|
|
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=
|
|
|
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)
|