-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/new-login
* main: (64 commits) chore: Enable Japanese descriptions for Tools (#8646) Make WORKFLOW_* configurable as environment variables. (#8644) feat: add deepseek-v2.5 for model provider siliconflow (#8639) docs: fix predefined_model_scale_out.md redirect error (#8633) feat: add qwen2.5 for model provider siliconflow (#8630) fix: send message error when chatting with opening statement (#8627) fix: llm_generator.py JSONDecodeError (#8504) fix: commands.py (#8483) fix: redundant check for available_document_count (#8491) chore: enhance configuration descriptions (#8624) chore: add Gemini newest experimental models (close #7121) (#8621) feat: support o1 series models for openrouter (#8358) fix: form input add tabIndex (#8478) Add model parameter translation (#8509) feat(tools/cogview): Updated cogview tool to support cogview-3 and the latest cogview-3-plus (#8382) Add Fireworks AI as new model provider (#8428) feat:use xinference tts stream mode (#8616) docs: Add Japanese documentation for tools (#8469) feat: regenerate in `Chat`, `agent` and `Chatflow` app (#7661) feat: update pyproject.toml (#8368) ...
- Loading branch information
Showing
450 changed files
with
16,703 additions
and
1,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,17 @@ | |
|
||
class EnterpriseFeatureConfig(BaseSettings): | ||
""" | ||
Enterprise feature configs. | ||
Configuration for enterprise-level features. | ||
**Before using, please contact [email protected] by email to inquire about licensing matters.** | ||
""" | ||
|
||
ENTERPRISE_ENABLED: bool = Field( | ||
description="whether to enable enterprise features." | ||
description="Enable or disable enterprise-level features." | ||
"Before using, please contact [email protected] by email to inquire about licensing matters.", | ||
default=False, | ||
) | ||
|
||
CAN_REPLACE_LOGO: bool = Field( | ||
description="whether to allow replacing enterprise logo.", | ||
description="Allow customization of the enterprise logo.", | ||
default=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.