mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Remove defective extension
This commit is contained in:
parent
de72e83508
commit
584a7dd50d
@ -1 +0,0 @@
|
||||
googletrans==3.1.0a0
|
@ -1,31 +0,0 @@
|
||||
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
|
||||
|
||||
def bot_prefix_modifier(string):
|
||||
"""
|
||||
This function is only applied in chat mode. It modifies
|
||||
the prefix text for the Bot and can be used to bias its
|
||||
behavior.
|
||||
"""
|
||||
|
||||
return string
|
Loading…
Reference in New Issue
Block a user