소스 검색

chore: add fetch_translate method to Bridge class

master
lanvent 1 년 전
부모
커밋
9a99caeb9d
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +0
    -0
      bot/bot_factory.py
  2. +4
    -1
      bridge/bridge.py

bot/factory.py → bot/bot_factory.py 파일 보기


+ 4
- 1
bridge/bridge.py 파일 보기

@@ -1,4 +1,4 @@
from bot.factory import create_bot
from bot.bot_factory import create_bot
from bridge.context import Context
from bridge.reply import Reply
from common import const
@@ -49,3 +49,6 @@ class Bridge(object):

def fetch_text_to_voice(self, text) -> Reply:
return self.get_bot("text_to_voice").textToVoice(text)

def fetch_translate(self, text, from_lang="", to_lang="en") -> Reply:
return self.get_bot("translate").translate(text, from_lang, to_lang)

Loading…
취소
저장