diff options
author | David Timber <dxdt@dev.snart.me> | 2024-05-04 01:18:58 +0900 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-05-04 01:18:58 +0900 |
commit | 969d9d3efe661a1081878c0c55737c3cd5f2a49c (patch) | |
tree | 2baf7deeab10eb8b1e48482e4dc4e4442f0dcf94 /doc | |
parent | b3e1d10646ea5b0bdbfdbdbf8bd5e21487248c5c (diff) |
- 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
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.jsonc | 6 |
1 files changed, 6 insertions, 0 deletions
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" |