From c1c6802179a224f67979151afbad97abe8ac6c8b Mon Sep 17 00:00:00 2001 From: Dan Maia Date: Tue, 16 May 2023 17:55:03 -0300 Subject: [PATCH] fix: transcription_price config variable --- bot/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/main.py b/bot/main.py index 3615d8bf..8b579d98 100644 --- a/bot/main.py +++ b/bot/main.py @@ -73,7 +73,7 @@ def main(): 'group_trigger_keyword': os.environ.get('GROUP_TRIGGER_KEYWORD', ''), 'token_price': float(os.environ.get('TOKEN_PRICE', 0.002)), 'image_prices': [float(i) for i in os.environ.get('IMAGE_PRICES', "0.016,0.018,0.02").split(",")], - 'transcription_price': float(os.environ.get('TOKEN_PRICE', 0.006)), + 'transcription_price': float(os.environ.get('TRANSCRIPTION_PRICE', 0.006)), 'bot_language': os.environ.get('BOT_LANGUAGE', 'en'), }