Minor fix, README update

This commit is contained in:
Kumi 2023-05-01 08:39:59 +00:00
parent 5997ee8ab1
commit e17dff0644
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 3 additions and 1 deletions

View file

@ -13,6 +13,8 @@ probably add more in the future, so the name is a bit misleading.
- Currently supports OpenAI (tested with `gpt-3.5-turbo`)
- AI-generated pictures via the `!gptbot imagine` command
- Currently supports OpenAI (DALL-E)
- Mathematical calculations via the `!gptbot calculate` command
- Currently supports WolframAlpha
- DuckDB database to store spent tokens
## Planned features

View file

@ -50,7 +50,7 @@ async def command_roomsettings(room: MatrixRoom, event: RoomMessageText, bot):
bot.logger.log("Retrieving classification status...")
use_classification = await bot.room_uses_classification(room)
use_classification = bot.room_uses_classification(room)
await bot.send_message(room, f"The current classification status is: '{use_classification}'.", True)
return