From 969d9d3efe661a1081878c0c55737c3cd5f2a49c Mon Sep 17 00:00:00 2001 From: David Timber Date: Sat, 4 May 2024 01:18:58 +0900 Subject: Bug fixes and improvements ... - Parameterise the "dryrun" config - Parameterise the "temperature" prompt param - Fix JWTMarkerExtractor filter logic - Replace "jti" with "pid" to the marker JWT to combat reply attacks - Prompt optimisation through JSON output - Parameterise the response - Change from yes/no to score response - Add the score in the comment format --- doc/config.jsonc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'doc/config.jsonc') diff --git a/doc/config.jsonc b/doc/config.jsonc index f185b17..7e8ff6c 100644 --- a/doc/config.jsonc +++ b/doc/config.jsonc @@ -1,4 +1,5 @@ { + "dryrun": false, "login": { "id": "", "password": "" @@ -6,6 +7,11 @@ "api_keys": { "chatgpt": "" }, + "llm_params": { + "gpt": { + "temperature": 0 + } + }, "marker": { "secret": "", "algorithm": "HS256" -- cgit