From 91943a6a7b0583cd645dd6739aa50fabb2890821 Mon Sep 17 00:00:00 2001 From: efugier Date: Thu, 12 Sep 2024 10:45:16 +0200 Subject: [PATCH] chore(doc): typo --- README.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 79598e0..18bf2be 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ Options: -v, --voice whether to use voice for input --api overrides which api to hit [possible values: another-api-for-tests, ollama, anthropic, groq, mistral, openai] -m, --model overrides which model (of the api) to use - -t, --temperature temperature higher means answer further from the average + -t, --temperature higher temperature means answer further from the average -l, --char-limit max number of chars to include, ask for user approval if more, 0 = no limit -c, --context ... glob patterns or list of files to use the content as context make sure it's the last arg. diff --git a/src/main.rs b/src/main.rs index 6bd624f..32b5d5f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -73,7 +73,7 @@ struct PromptParams { /// overrides which model (of the api) to use #[arg(short, long)] model: Option, - /// temperature higher means answer further from the average + /// higher temperature means answer further from the average #[arg(short, long)] temperature: Option, /// max number of chars to include, ask for user approval if more, 0 = no limit