mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-11-02 07:44:27 -05:00
Updated changelog. Version upped to 4.3.19
This commit is contained in:
13
CHANGELOG.md
13
CHANGELOG.md
@@ -2,6 +2,19 @@
|
|||||||
|
|
||||||
Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
|
Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o
|
||||||
|
|
||||||
|
|
||||||
|
## [4.3.19] - 20.01.2024
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Added `followedStreams.maxCount` to `searches.yml` which lets bot owners change the default of 10 per server
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Improvements to GPT ChatterBot (thx alexandra)
|
||||||
|
- Add a personality prompt to tweak the way chatgpt bot behaves
|
||||||
|
- Added Chat history support to chatgpt ChatterBot
|
||||||
|
- Chatgpt token usage now correctly calculated
|
||||||
|
- More chatgpt configs in `games.yml`
|
||||||
|
|
||||||
## [4.3.18] - 26.12.2023
|
## [4.3.18] - 26.12.2023
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ namespace NadekoBot.Services;
|
|||||||
|
|
||||||
public sealed class StatsService : IStatsService, IReadyExecutor, INService
|
public sealed class StatsService : IStatsService, IReadyExecutor, INService
|
||||||
{
|
{
|
||||||
public const string BOT_VERSION = "4.3.18";
|
public const string BOT_VERSION = "4.3.19";
|
||||||
|
|
||||||
public string Author
|
public string Author
|
||||||
=> "Kwoth#2452";
|
=> "Kwoth#2452";
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# DO NOT CHANGE
|
# DO NOT CHANGE
|
||||||
version: 1
|
version: 2
|
||||||
# Which engine should .search command
|
# Which engine should .search command
|
||||||
# 'google_scrape' - default. Scrapes the webpage for results. May break. Requires no api keys.
|
# 'google_scrape' - default. Scrapes the webpage for results. May break. Requires no api keys.
|
||||||
# 'google' - official google api. Requires googleApiKey and google.searchId set in creds.yml
|
# 'google' - official google api. Requires googleApiKey and google.searchId set in creds.yml
|
||||||
@@ -41,3 +41,7 @@ searxInstances: []
|
|||||||
# Instances specified must have api available.
|
# Instances specified must have api available.
|
||||||
# You check that by opening an api endpoint in your browser. For example: https://my-invidious-instance.mydomain.com/api/v1/trending
|
# You check that by opening an api endpoint in your browser. For example: https://my-invidious-instance.mydomain.com/api/v1/trending
|
||||||
invidiousInstances: []
|
invidiousInstances: []
|
||||||
|
# Maximum number of followed streams per server
|
||||||
|
followedStreams:
|
||||||
|
# Maximum number of streams that each server can follow. -1 for infinite
|
||||||
|
maxCount: 10
|
||||||
|
|||||||
Reference in New Issue
Block a user