fix: reduce tokens limit to 20 per review

This commit is contained in:
shokollm
2026-04-09 06:18:31 +00:00
parent 786e964e32
commit 50af4e0722

View File

@@ -15,5 +15,5 @@ def get_chains():
async def get_tokens(): async def get_tokens():
settings = get_settings() settings = get_settings()
client = AveCloudClient(api_key=settings.AVE_API_KEY, plan=settings.AVE_API_PLAN) client = AveCloudClient(api_key=settings.AVE_API_KEY, plan=settings.AVE_API_PLAN)
tokens = await client.get_tokens(chain="bsc", limit=100) tokens = await client.get_tokens(chain="bsc", limit=20)
return {"tokens": tokens} return {"tokens": tokens}