diff --git a/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py b/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py
index 3ca4dec3e62dc42de5d1b506f9ccd6e50f517aa8..f9672d070f4fdeecf12f0447090b968380494769 100644
--- a/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py
+++ b/src/pathcomp/frontend/service/algorithms/tools/ComposeRequest.py
@@ -130,7 +130,7 @@ def compose_link(grpc_link : Link) -> Dict:
         elif total_capacity_gbps is not None:
             used_capacity_gbps = total_capacity_gbps
 
-    if total_capacity_gbps is None: total_capacity_gbps = 100
+    if total_capacity_gbps is None: total_capacity_gbps = 100000
     if used_capacity_gbps  is None: used_capacity_gbps = 0
     available_capacity_gbps = total_capacity_gbps - used_capacity_gbps