File size: 852 Bytes
e17c9f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
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 # noqa: F401, ensure autoregister
from .zhipuai_helper import ZhipuAIHelper # noqa: F401, ensure autoregister
__all__ = ["HelperCompany"]
|