Spaces:
Runtime error
Runtime error
| # ========= 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 .anthropic_config import ANTHROPIC_API_PARAMS, AnthropicConfig | |
| from .base_config import BaseConfig | |
| 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 .mistral_config import MISTRAL_API_PARAMS, MistralConfig | |
| 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 .qwen_config import QWEN_API_PARAMS, QwenConfig | |
| from .reka_config import REKA_API_PARAMS, RekaConfig | |
| from .openrouter_config import OPENROUTER_API_PARAMS, OpenRouterConfig | |
| from .samba_config import ( | |
| SAMBA_CLOUD_API_PARAMS, | |
| SAMBA_VERSE_API_PARAMS, | |
| SambaCloudAPIConfig, | |
| SambaVerseAPIConfig, | |
| ) | |
| from .sglang_config import SGLANG_API_PARAMS, SGLangConfig | |
| 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', | |
| 'DeepSeekConfig', | |
| 'DEEPSEEK_API_PARAMS', | |
| 'InternLMConfig', | |
| 'INTERNLM_API_PARAMS', | |
| 'OPENROUTER_API_PARAMS', | |
| 'OpenRouterConfig', | |
| ] | |