Rename extension
This commit is contained in:
parent
1a8d815de4
commit
c9447da898
2 changed files with 0 additions and 0 deletions
1
extensions/google_translate/requirements.txt
Normal file
1
extensions/google_translate/requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
googletrans==3.1.0a0
|
22
extensions/google_translate/script.py
Normal file
22
extensions/google_translate/script.py
Normal file
|
@ -0,0 +1,22 @@
|
|||
from googletrans import Translator
|
||||
|
||||
translator = Translator()
|
||||
|
||||
params = {
|
||||
"language string": "ja",
|
||||
}
|
||||
|
||||
def input_modifier(string):
|
||||
"""
|
||||
This function is applied to your text inputs before
|
||||
they are fed into the model.
|
||||
"""
|
||||
|
||||
return translator.translate(string, src=params['language string'], dest='en').text
|
||||
|
||||
def output_modifier(string):
|
||||
"""
|
||||
This function is applied to the model outputs.
|
||||
"""
|
||||
|
||||
return translator.translate(string, src="en", dest=params['language string']).text
|
Loading…
Add table
Add a link
Reference in a new issue