first substantial commit. nearly working with Amazon. fixed #1
This commit is contained in:
18
config.py
Normal file
18
config.py
Normal file
@@ -0,0 +1,18 @@
|
||||
import os
|
||||
|
||||
from tatt.vendors import (
|
||||
amazon,
|
||||
)
|
||||
|
||||
|
||||
STT_SERVICES = {
|
||||
'amazon': {
|
||||
'cost_per_minute': .024,
|
||||
'free': '60_minutes_per_month_for_the_first_12_months',
|
||||
'function': amazon.transcribe,
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
DEFAULT_BUCKET_NAME_FORMATTER = 'tatt_{}'
|
||||
AWS_CREDENTIALS_FILEPATH = os.getenv('AWS_CREDENTIALS_FILEPATH') or '~/.aws/credentials'
|
||||
Reference in New Issue
Block a user