From 224edeb402ec68463d8404dcc729ce291d14a94d Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Fri, 5 Dec 2025 14:20:32 +0530 Subject: [PATCH] refactor(aichat): update model to openai:gpt-4o from selfhosted fix(configuration): add Wake on LAN to allowed UDP ports --- home/programs/aichat.nix | 6 +++--- nixos/ryu/configuration.nix | 9 +++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/home/programs/aichat.nix b/home/programs/aichat.nix index 8f2c0bf7..964e471e 100644 --- a/home/programs/aichat.nix +++ b/home/programs/aichat.nix @@ -16,8 +16,8 @@ enableNushellIntegration = false; settings = { save_session = true; - # model = "openai:gpt-4o"; - model = "ryu:qwen3-coder-30b"; + model = "openai:gpt-4o"; + # model = "ryu:qwen3-coder-30b"; rag_embedding_model = "ollama:RobinBially/nomic-embed-text-8k"; clients = [ { @@ -174,7 +174,7 @@ */ '' --- - model: ryu:qwen3-coder-30b + model: openai:gpt-4o --- Your task is to generate a concise and informative commit message based on the provided diff. Use the conventional commit format, which includes a type (feat, fix, chore, docs, style, refactor, perf, test) and an optional scope. The message should be in the imperative mood and should not exceed 72 characters in the subject line. Do not under any circumstance include any additional text or explanations, just add the commit message. ''; diff --git a/nixos/ryu/configuration.nix b/nixos/ryu/configuration.nix index 918ef9d1..4d8a6a55 100644 --- a/nixos/ryu/configuration.nix +++ b/nixos/ryu/configuration.nix @@ -198,10 +198,11 @@ "tailscale0" ]; allowedUDPPorts = [ - 4950 - 4955 - 3113 - ]; # Warframe + 9 # Wake on LAN + 4950 # Warframe + 4955 # Warframe + 3113 # Other + ]; allowedTCPPortRanges = [ { from = 1714;