Enable geoclue2 and add litellm models and API key vars

This commit is contained in:
RingOfStorms (Joshua Bell) 2026-01-06 22:27:49 -06:00
parent 9848701145
commit ee6fa6cd9b
2 changed files with 20 additions and 0 deletions

View file

@ -37,6 +37,10 @@ in
settings = {
environment_variables = {
LITELLM_PROXY_API_KEY = "na";
# TODO get from openbao secrets somehow
OPENROUTER_API_KEY = "kv/data/machines/home/openrouter api-key";
ANTHROPIC_API_KEY = "kv/data/machines/home/anthropic-claude api-key";
};
litellm_settings = {
check_provider_endpoints = true;
@ -44,6 +48,20 @@ in
modify_params = true;
};
model_list = [
# Anthropic (direct)
{
model_name = "anthropic/*";
litellm_params = {
model = "anthropic/*";
};
}
# OpenRouter
{
model_name = "openrouter/*";
litellm_params = {
model = "openrouter/*";
};
}
]
# Copilot
++ (builtins.map
@ -142,3 +160,4 @@ in
};
};
}