2026-02-20 23:23:32 -08:00
|
|
|
"""Shared constants for Hermes Agent.
|
|
|
|
|
|
|
|
|
|
Import-safe module with no dependencies — can be imported from anywhere
|
|
|
|
|
without risk of circular imports.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
OPENROUTER_BASE_URL = "https://openrouter.ai/api/v1"
|
|
|
|
|
OPENROUTER_MODELS_URL = f"{OPENROUTER_BASE_URL}/models"
|
|
|
|
|
OPENROUTER_CHAT_URL = f"{OPENROUTER_BASE_URL}/chat/completions"
|
2026-03-08 18:40:50 +10:00
|
|
|
|
|
|
|
|
NOUS_API_BASE_URL = "https://inference-api.nousresearch.com/v1"
|
|
|
|
|
NOUS_API_CHAT_URL = f"{NOUS_API_BASE_URL}/chat/completions"
|