123456789101112131415161718192021222324 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2024/03/25 13:21:37
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc :
- '''
- class QuestionClassificationService:
-
- def __init__(self):
- pass
- @staticmethod
- async def classify(input_text: str)->str:
- pass
- class QuestionIdentification:
- def __init__(self):
- pass
|