We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Not Available
1 parent 6baae0a commit a43aa33Copy full SHA for a43aa33
src/aleph_client/commands/pricing.py
@@ -211,8 +211,8 @@ def display_table_for(
211
if "vram" in tier:
212
row.append(f"{tier['vram'] / 1024:.0f}")
213
if "holding" in price_unit:
214
- # If the pricing entity is confidential or compute units > 4, display "Not Available"
215
- if pricing_entity == PricingEntity.INSTANCE_CONFIDENTIAL or current_units > 4:
+ # If the pricing entity is confidential, display "Not Available"
+ if pricing_entity == PricingEntity.INSTANCE_CONFIDENTIAL:
216
row.append("Not Available")
217
else:
218
row.append(
0 commit comments