mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* [Feature] Support 360API and FixKRetriever for CSQA dataset * Update API * Update API * [Feature] Support 360API and FixKRetriever for CSQA dataset * Update API * Update API * rm mathbench * fix_lint * Update opencompass/models/bytedance_api.py Co-authored-by: Hubert <42952108+yingfhu@users.noreply.github.com> * update * update * update --------- Co-authored-by: Hubert <42952108+yingfhu@users.noreply.github.com>
22 lines
1.0 KiB
Python
22 lines
1.0 KiB
Python
from .ai360_api import AI360GPT # noqa: F401
|
|
from .alaya import AlayaLM # noqa: F401
|
|
from .baichuan_api import BaiChuan # noqa: F401
|
|
from .baidu_api import ERNIEBot # noqa: F401
|
|
from .base import BaseModel, LMTemplateParser # noqa
|
|
from .base_api import APITemplateParser, BaseAPIModel # noqa
|
|
from .bytedance_api import ByteDance # noqa: F401
|
|
from .claude_api import Claude # noqa: F401
|
|
from .glm import GLM130B # noqa: F401, F403
|
|
from .huggingface import HuggingFace # noqa: F401, F403
|
|
from .huggingface import HuggingFaceCausalLM # noqa: F401, F403
|
|
from .huggingface import HuggingFaceChatGLM3 # noqa: F401, F403
|
|
from .intern_model import InternLM # noqa: F401, F403
|
|
from .lightllm_api import LightllmAPI # noqa: F401
|
|
from .llama2 import Llama2, Llama2Chat # noqa: F401, F403
|
|
from .minimax_api import MiniMax # noqa: F401
|
|
from .openai_api import OpenAI # noqa: F401
|
|
from .pangu_api import PanGu # noqa: F401
|
|
from .sensetime_api import SenseTime # noqa: F401
|
|
from .xunfei_api import XunFei # noqa: F401
|
|
from .zhipuai_api import ZhiPuAI # noqa: F401
|