Skip to content

Commit

Permalink
Merge pull request n3d1117#318 from danfmaia/fix/transcription-price
Browse files Browse the repository at this point in the history
fix: transcription price
  • Loading branch information
n3d1117 authored May 17, 2023
2 parents 3023c45 + c1c6802 commit 1c8b633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
}

Expand Down

0 comments on commit 1c8b633

Please sign in to comment.