mirror of
https://github.com/camel-ai/owl.git
synced 2026-03-22 05:57:17 +08:00
107 lines
3.7 KiB
Python
107 lines
3.7 KiB
Python
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
from .aiml_config import AIML_API_PARAMS, AIMLConfig
|
|
from .anthropic_config import ANTHROPIC_API_PARAMS, AnthropicConfig
|
|
from .base_config import BaseConfig
|
|
from .bedrock_config import BEDROCK_API_PARAMS, BedrockConfig
|
|
from .cohere_config import COHERE_API_PARAMS, CohereConfig
|
|
from .deepseek_config import DEEPSEEK_API_PARAMS, DeepSeekConfig
|
|
from .gemini_config import Gemini_API_PARAMS, GeminiConfig
|
|
from .groq_config import GROQ_API_PARAMS, GroqConfig
|
|
from .internlm_config import INTERNLM_API_PARAMS, InternLMConfig
|
|
from .litellm_config import LITELLM_API_PARAMS, LiteLLMConfig
|
|
from .lmstudio_config import LMSTUDIO_API_PARAMS, LMStudioConfig
|
|
from .mistral_config import MISTRAL_API_PARAMS, MistralConfig
|
|
from .modelscope_config import MODELSCOPE_API_PARAMS, ModelScopeConfig
|
|
from .moonshot_config import MOONSHOT_API_PARAMS, MoonshotConfig
|
|
from .nvidia_config import NVIDIA_API_PARAMS, NvidiaConfig
|
|
from .ollama_config import OLLAMA_API_PARAMS, OllamaConfig
|
|
from .openai_config import OPENAI_API_PARAMS, ChatGPTConfig
|
|
from .openrouter_config import OPENROUTER_API_PARAMS, OpenRouterConfig
|
|
from .ppio_config import PPIO_API_PARAMS, PPIOConfig
|
|
from .qwen_config import QWEN_API_PARAMS, QwenConfig
|
|
from .reka_config import REKA_API_PARAMS, RekaConfig
|
|
from .samba_config import (
|
|
SAMBA_CLOUD_API_PARAMS,
|
|
SAMBA_VERSE_API_PARAMS,
|
|
SambaCloudAPIConfig,
|
|
SambaVerseAPIConfig,
|
|
)
|
|
from .sglang_config import SGLANG_API_PARAMS, SGLangConfig
|
|
from .siliconflow_config import SILICONFLOW_API_PARAMS, SiliconFlowConfig
|
|
from .togetherai_config import TOGETHERAI_API_PARAMS, TogetherAIConfig
|
|
from .vllm_config import VLLM_API_PARAMS, VLLMConfig
|
|
from .yi_config import YI_API_PARAMS, YiConfig
|
|
from .zhipuai_config import ZHIPUAI_API_PARAMS, ZhipuAIConfig
|
|
|
|
__all__ = [
|
|
'BaseConfig',
|
|
'ChatGPTConfig',
|
|
'OPENAI_API_PARAMS',
|
|
'AnthropicConfig',
|
|
'ANTHROPIC_API_PARAMS',
|
|
'GROQ_API_PARAMS',
|
|
'GroqConfig',
|
|
'LiteLLMConfig',
|
|
'LITELLM_API_PARAMS',
|
|
'NvidiaConfig',
|
|
'NVIDIA_API_PARAMS',
|
|
'OllamaConfig',
|
|
'OLLAMA_API_PARAMS',
|
|
'ZhipuAIConfig',
|
|
'ZHIPUAI_API_PARAMS',
|
|
'GeminiConfig',
|
|
'Gemini_API_PARAMS',
|
|
'VLLMConfig',
|
|
'VLLM_API_PARAMS',
|
|
'SGLangConfig',
|
|
'SGLANG_API_PARAMS',
|
|
'MistralConfig',
|
|
'MISTRAL_API_PARAMS',
|
|
'RekaConfig',
|
|
'REKA_API_PARAMS',
|
|
'SambaVerseAPIConfig',
|
|
'SAMBA_VERSE_API_PARAMS',
|
|
'SambaCloudAPIConfig',
|
|
'SAMBA_CLOUD_API_PARAMS',
|
|
'TogetherAIConfig',
|
|
'TOGETHERAI_API_PARAMS',
|
|
'CohereConfig',
|
|
'COHERE_API_PARAMS',
|
|
'YiConfig',
|
|
'YI_API_PARAMS',
|
|
'QwenConfig',
|
|
'QWEN_API_PARAMS',
|
|
'BedrockConfig',
|
|
'BEDROCK_API_PARAMS',
|
|
'DeepSeekConfig',
|
|
'DEEPSEEK_API_PARAMS',
|
|
'PPIOConfig',
|
|
'PPIO_API_PARAMS',
|
|
'InternLMConfig',
|
|
'INTERNLM_API_PARAMS',
|
|
'MoonshotConfig',
|
|
"MOONSHOT_API_PARAMS",
|
|
'ModelScopeConfig',
|
|
'MODELSCOPE_API_PARAMS',
|
|
'SiliconFlowConfig',
|
|
'SILICONFLOW_API_PARAMS',
|
|
'AIMLConfig',
|
|
'AIML_API_PARAMS',
|
|
'OpenRouterConfig',
|
|
'OPENROUTER_API_PARAMS',
|
|
'LMSTUDIO_API_PARAMS',
|
|
'LMStudioConfig',
|
|
]
|