File size: 640 Bytes
85b7206
0700cb3
85b7206
 
 
 
 
 
 
0700cb3
 
85b7206
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import json
from typing import Any

import pronunciationTrainer


trainer_SST_lambda = {'de': pronunciationTrainer.getTrainer("de"), 'en': pronunciationTrainer.getTrainer("en")}


def lambda_handler(event: dict[str], context: Any) -> str:
    """Lambda handler to change the model used by the pronunciation trainer (Currently not used)"""
    data = json.loads(event['body'])
    model_name = data['modelName']
    trainer_SST_lambda["de"] = pronunciationTrainer.getTrainer("de", model_name=model_name)
    trainer_SST_lambda["en"] = pronunciationTrainer.getTrainer("en", model_name=model_name)
    return f'Model changed to {model_name}!'