mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-18 14:52:04 +00:00
20 lines
484 B
Python
20 lines
484 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-flash-preview",
|
|
)
|
|
|
|
register_provider(kilocode)
|
|
|
|
|
|
def register(ctx):
|
|
"""No-op — this provider has no workspace package yet."""
|
|
pass
|
|
|