From 271b26acca61eca062e197e277c6fc9f80ec8305 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 12:41:01 +0000 Subject: [PATCH] Initial commit: ShellGen CLI tool with LLM backends --- app/.env.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/.env.example diff --git a/app/.env.example b/app/.env.example new file mode 100644 index 0000000..bc543bb --- /dev/null +++ b/app/.env.example @@ -0,0 +1,19 @@ +# ShellGen Configuration +# Copy this file to .env and modify as needed + +# Ollama API endpoint +OLLAMA_HOST=localhost:11434 + +# Default model to use (codellama, llama2, mistral, etc.) +OLLAMA_MODEL=codellama + +# Path to history database +SHELLGEN_HISTORY_PATH=~/.shellgen/history.db + +# Path to custom prompt templates +SHELLGEN_TEMPLATES_PATH=~/.shellgen/templates + +# Llama.cpp specific settings +LLAMA_CPP_MODEL_PATH=~/.cache/llama-cpp/models/ +LLAMA_CPP_N_CTX=2048 +LLAMA_CPP_N_THREADS=4