mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-31 19:16:29 +00:00
gemini-2.5-flash shuts down Oct 16 2026 (Google deprecation schedule) and gemini-3-flash-preview is superseded. Update every hardcoded default to the current GA flash model: - gemini_native_adapter: probe_gemini_tier + _create_chat_completion default params; free-tier guidance de-pinned from a specific model's RPD number so it doesn't stale again - auxiliary_client: gemini/kilocode fallback aux models, _OPENROUTER_MODEL, _NOUS_MODEL -> google/gemini-3.6-flash (verified live on both OpenRouter and Nous portal /models) - provider plugins: kilocode + vertex default_aux_model - hindsight memory plugin: gemini provider default - setup wizard gemini list: 3-flash-preview -> 3.6-flash (matches the curated picker catalog) - tests: aux-client assertions that pinned the old default literal now reference the _NOUS_MODEL constant, so the next default bump can't break them (change-detector cleanup) Fixes #32360.
14 lines
383 B
Python
14 lines
383 B
Python
"""Kilo Code provider profile."""
|
|
|
|
from providers import register_provider
|
|
from providers.base import ProviderProfile
|
|
|
|
kilocode = ProviderProfile(
|
|
name="kilocode",
|
|
aliases=("kilo-code", "kilo", "kilo-gateway"),
|
|
env_vars=("KILOCODE_API_KEY",),
|
|
base_url="https://api.kilo.ai/api/gateway",
|
|
default_aux_model="google/gemini-3.6-flash",
|
|
)
|
|
|
|
register_provider(kilocode)
|