Skip to content

Commit e4a1cee

Browse files
Adam BaloghAdam Balogh
authored andcommitted
use gemini flash
1 parent f990143 commit e4a1cee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

agent/agent_executors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
if not config.SUBNET_MODE:
4141
SUGGESTIONS_MODEL = GOOGLE_GEMINI_20_FLASH_MODEL
4242
ROUTING_MODEL = GOOGLE_GEMINI_FLASH_15_8B_MODEL
43-
REASONING_MODEL = GROK_MODEL
43+
REASONING_MODEL = GOOGLE_GEMINI_20_FLASH_MODEL
4444
BASE_URL = "https://openrouter.ai/api/v1"
4545
API_KEY = os.getenv("OPENROUTER_API_KEY")
4646
else:

onchain/coingecko/trending.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def evaluate_token_risk(
5959
"holder_distribution": {
6060
"total_holders": attributes.get("holders", {}).get("count", 0),
6161
"distribution": {
62-
"top_10": attributes.get("holders", {}).get("distribution_percentage", {}).get("top_10", "0"),
62+
"top_10": attributes.get("holders", {}).get("distribution_percentage", {}).get("top_10", "unknown"),
6363
},
6464
"concentration_risk": "High" if float(attributes.get("holders", {}).get("distribution_percentage", {}).get("top_10", "0")) > 30 else "Moderate"
6565
},

0 commit comments

Comments
 (0)