|
r"""_summary_ |
|
-*- coding: utf-8 -*- |
|
|
|
Module : data.utils.api |
|
|
|
File Name : __init__.py |
|
|
|
Description : API helper automatic registration, using HelperCompany can directly reflect the corresponding helper |
|
If you need to add a new AI helper, please add the Python source file in the same level path, for example: |
|
``` |
|
@register_helper('name') |
|
class CustomerHelper(BaseHelper): |
|
... |
|
``` |
|
Then import it into this file, for example |
|
``` |
|
from .customer_helper import CustomerHelper # noqa: F401, ensure autoregister |
|
``` |
|
|
|
|
|
Creation Date : 2024-10-29 |
|
|
|
Author : Frank Kang([email protected]) |
|
""" |
|
from .base_helper import HelperCompany |
|
from .openai_helper import OpenAIHelper |
|
from .zhipuai_helper import ZhipuAIHelper |
|
|
|
__all__ = ["HelperCompany"] |
|
|