From 2c77cf2ed40682a3e005441c88f7d650df7028b4 Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sun, 25 May 2025 01:32:05 -0500 Subject: [PATCH] updated list of models on twilight --- .../nixos/twilight/configuration.nix | 27 +++++++------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/configurations/nixos/twilight/configuration.nix b/configurations/nixos/twilight/configuration.nix index 12d9151..4a2c838 100644 --- a/configurations/nixos/twilight/configuration.nix +++ b/configurations/nixos/twilight/configuration.nix @@ -37,54 +37,45 @@ # conversation models "lamma3.1:8b" = { model = "lamma3.1:8b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["chat" "edit" "apply"]; }; "deepseek-r1:8b" = { model = "deepseek-r1:8b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["chat" "edit" "apply"]; }; "deepseek-r1:32b" = { model = "deepseek-r1:32b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["chat" "edit" "apply"]; }; # auto complete models "qwen2.5-coder:1.5b-base" = { model = "qwen2.5-coder:1.5b-base"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["autocomplete"]; }; "qwen2.5-coder:7b" = { model = "qwen2.5-coder:7b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["autocomplete"]; }; "deepseek-coder:6.7b" = { model = "deepseek-coder:6.7b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["autocomplete"]; }; "deepseek-coder:33b" = { model = "deepseek-coder:33b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["autocomplete"]; }; # agent models "qwen3:32b" = { model = "qwen3:32b"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["chat" "edit" "apply"]; }; # embedding models "nomic-embed-text:latest" = { model = "nomic-embed-text:latest"; - # TODO: figure out what should be in this array - # roles = [""]; + roles = ["embed"]; }; }; };