Remove unused BlockCostType import and base cost configuration

This commit is contained in:
abhi1992002
2026-03-16 09:54:23 +05:30
parent 45897957a5
commit 78ef378ca8

View File

@@ -2,12 +2,11 @@
Shared configuration for all AgentMail blocks.
"""
from backend.sdk import APIKeyCredentials, BlockCostType, ProviderBuilder, SecretStr
from backend.sdk import APIKeyCredentials, ProviderBuilder, SecretStr
agent_mail = (
ProviderBuilder("agent_mail")
.with_api_key("AGENTMAIL_API_KEY", "AgentMail API Key")
.with_base_cost(1, BlockCostType.RUN)
.build()
)