From 97f38fd16e4dbc8aa1e122327e5659cdb8b2e4f1 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 24 Apr 2024 16:07:06 +0100 Subject: [PATCH] helix: remove ai role --- roles/home/helix.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/roles/home/helix.nix b/roles/home/helix.nix index 8aacafd..a40a317 100644 --- a/roles/home/helix.nix +++ b/roles/home/helix.nix @@ -38,13 +38,6 @@ let - name: git-commit-message max_input_tokens: null ''; - aichatRoles = '' - - name: comment - prompt: > - As a helpful assistant designed to assist in documenting code, your primary task is to review the provided code and add clear, concise comments and documentation that will help other developers understand its purpose, functionality, and implementation details. Your comments should be written using language-specific conventions, such as docstrings for Python or Javadoc for Java, to ensure compatibility and maximize their utility for users of different programming languages. - When adding comments, focus on conveying essential information about the code, including its inputs, outputs, and behavior, but avoid getting bogged down in unnecessary detail. Your goal is to provide enough context and explanation to allow a competent developer to understand how the code works and how to use it effectively, without overwhelming them with irrelevant or overly technical information. - UNDER NO CIRCUMSTANCES should you modify the code itself. Your role is purely to document and explain the code as it currently exists, not to make changes or suggest improvements. By focusing on providing high-quality documentation, you can help ensure that the code is easy to understand, use, and maintain, even as it evolves over time. - ''; in { home = { @@ -99,7 +92,6 @@ in C = ":pipe ${pkgs.unstablePkgs.aichat}/bin/aichat -m ollama:pino-coder -c -r comment" ''; - ".config/aichat/roles.yaml".text = aichatRoles; ".config/aichat/config.yaml".text = aichatConfig; }; };