branch: externals/minuet commit 6e523c740f50b6724d089f1061d5af0eddb26071 Author: Milan Glacier <d...@milanglacier.com> Commit: Milan Glacier <d...@milanglacier.com>
doc: update environment variable setting example for Windows user. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index be5da06ac8..0723c457db 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,9 @@ preferred package managers. ;; you should adjust the context window to a larger value. (setq minuet-context-window 512) (plist-put minuet-openai-fim-compatible-options :end-point "http://localhost:11434/v1/completions") - ;; an arbitrary non-null environment variable as placeholder + ;; an arbitrary non-null environment variable as placeholder. + ;; For Windows users, TERM may not be present in environment variables. + ;; Consider using APPDATA instead. (plist-put minuet-openai-fim-compatible-options :name "Ollama") (plist-put minuet-openai-fim-compatible-options :api-key "TERM") (plist-put minuet-openai-fim-compatible-options :model "qwen2.5-coder:3b") @@ -209,6 +211,8 @@ llama-server \ (setq minuet-context-window 512) (plist-put minuet-openai-fim-compatible-options :end-point "http://localhost:8012/v1/completions") ;; an arbitrary non-null environment variable as placeholder + ;; For Windows users, TERM may not be present in environment variables. + ;; Consider using APPDATA instead. (plist-put minuet-openai-fim-compatible-options :name "Llama.cpp") (plist-put minuet-openai-fim-compatible-options :api-key "TERM") ;; The model is set by the llama-cpp server and cannot be altered