Integrate burncloud

This commit is contained in:
tanggang 2025-11-24 15:14:44 +08:00
parent 48ee7b58c3
commit 2218f83522
3 changed files with 1800 additions and 7 deletions

File diff suppressed because it is too large Load diff

View file

@ -68,6 +68,7 @@ A complete list of models supported by RAGFlow, which will continue to expand.
| CometAPI | :heavy_check_mark: | :heavy_check_mark: | | | | |
| DeerAPI | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: | | :heavy_check_mark: |
| Jiekou.AI | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | | |
| BurnCloud | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
```mdx-code-block
</APITable>

View file

@ -72,6 +72,7 @@ FACTORY_DEFAULT_BASE_URL = {
SupportedLiteLLMProvider.AI_302: "https://api.302.ai/v1",
SupportedLiteLLMProvider.Anthropic: "https://api.anthropic.com/",
SupportedLiteLLMProvider.JiekouAI: "https://api.jiekou.ai/openai",
SupportedLiteLLMProvider.BurnCloud: "https://ai.burncloud.com/v1",
}
@ -103,7 +104,7 @@ LITELLM_PROVIDER_PREFIX = {
SupportedLiteLLMProvider.GiteeAI: "openai/",
SupportedLiteLLMProvider.AI_302: "openai/",
SupportedLiteLLMProvider.JiekouAI: "openai/",
SupportedLiteLLMProvider.BurnCloud: "burncloud/",
SupportedLiteLLMProvider.BurnCloud: "openai/",
}
ChatModel = globals().get("ChatModel", {})