Remove test at home

This commit is contained in:
Martin Pander
2026-02-11 21:17:44 +01:00
parent 87dbdd522b
commit 1e7c110903
2 changed files with 4 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ in
config = lib.mkIf cfg.enableConfig {
# Declare the sops secret
sops.secrets.langdock-api-key = {
sops.secrets.langdock_api_key = {
# Uses defaultSopsFile from secrets.nix
};
@@ -30,7 +30,7 @@ in
name = "Langdock OpenAI";
options = {
baseURL = "https://api.langdock.com/openai/eu/v1";
apiKey = config.sops.placeholder.langdock-api-key;
apiKey = config.sops.placeholder.langdock_api_key;
};
models = {
"gpt-5.2" = { name = "GPT-5.2"; };
@@ -41,10 +41,10 @@ in
anthropic = {
options = {
baseURL = "https://api.langdock.com/anthropic/eu/v1";
apiKey = config.sops.placeholder.langdock-api-key;
apiKey = config.sops.placeholder.langdock_api_key;
};
models = {
"Opus 4.6" = { name = "opus-4.6-default"; };
"claude-opus-4-6-default" = { name = "Opus 4.6"; };
};
};
ollama = {