mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-23 12:21:08 +00:00
Co-authored-by: KingSkyLi <15566300566@163.com> Co-authored-by: aries_ckt <916701291@qq.com> Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
11 lines
190 B
Python
11 lines
190 B
Python
"""Text2GQL class."""
|
|
import logging
|
|
|
|
from dbgpt.rag.transformer.base import TranslatorBase
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Text2GQL(TranslatorBase):
|
|
"""Text2GQL class."""
|