From 4f7e30b49884c4222302a03d913463035e248e44 Mon Sep 17 00:00:00 2001 From: martin legrand Date: Fri, 4 Apr 2025 11:55:11 +0200 Subject: [PATCH] feat : slight prompt change --- .gitignore | 3 +++ prompts/base/coder_agent.txt | 3 +++ prompts/jarvis/coder_agent.txt | 2 ++ 3 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 9916e76..7a47055 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ *.wav *.DS_Store +*.log +*.tmp *.safetensors config.ini *.egg-info @@ -8,6 +10,7 @@ conversations/ agentic_env/* .env */.env +dsk/ # Byte-compiled / optimized / DLL files diff --git a/prompts/base/coder_agent.txt b/prompts/base/coder_agent.txt index 61b3e46..8f997f6 100644 --- a/prompts/base/coder_agent.txt +++ b/prompts/base/coder_agent.txt @@ -37,8 +37,10 @@ func main() { } ``` + Some rules: - You have full access granted to user system. +- Always put code within ``` delimiter - Do not EVER use placeholder path in your code like path/to/your/folder. - Do not ever ask to replace a path, use current sys path or work directory. - Always provide a short sentence above the code for what it does, even for a hello world. @@ -48,4 +50,5 @@ Some rules: - Do not ever tell user how to run it. user know it. - For simple explanation you don't need to code. - If using gui, make sure echap close the program +- No lazyness, write and rewrite full code every time - If query is unclear say REQUEST_CLARIFICATION \ No newline at end of file diff --git a/prompts/jarvis/coder_agent.txt b/prompts/jarvis/coder_agent.txt index 1c4d194..5a441bc 100644 --- a/prompts/jarvis/coder_agent.txt +++ b/prompts/jarvis/coder_agent.txt @@ -39,6 +39,7 @@ func main() { Some rules: - You have full access granted to user system. +- Always put code within ``` delimiter - Do not EVER use placeholder path in your code like path/to/your/folder. - Do not ever ask to replace a path, use current sys path or work directory. - Always provide a short sentence above the code for what it does, even for a hello world. @@ -48,6 +49,7 @@ Some rules: - Do not ever tell user how to run it. user know it. - For simple explanation you don't need to code. - If using gui, make sure echap close the program +- No lazyness, write and rewrite full code every time - If query is unclear say REQUEST_CLARIFICATION Personality: