Leo Q

Results 239 comments of Leo Q

It is clearly stated in readme https://github.com/douban/charts/tree/master/charts/dify#install , pr are welcomed. the minimal config I provided is ``` global: host: "mydify.example.com" enableTLS: false extraEnvs: - name: SECRET_KEY value: "generate your...

I updated the default value for SECRET_KEY ๐Ÿ‘† Thanks for your feedback, I advice you first check the dify configure manul as I mentioned in the bottom of the readme,...

Also, maybe there should be a checker for the critical environment variable? You can submit a pr for that check.

I personally think there is no need to write additional code to support multiple storage engines. The current Dify supports the S3 protocol, and both Huawei Cloud and Alibaba Cloud...

IMHO this can be done with pydantic settings https://docs.pydantic.dev/1.10/usage/settings/ ``` class DifySettings(BaseSettings): DEBUG: bool = False dify_settings = DifySettings() assert dify_settings.DEBUG == False ``` It just works. Read more: https://docs.pydantic.dev/1.10/usage/types/#booleans

This could be helpful https://pydantic-argparse.supimdos.com/

https://github.com/langchain-ai/langchain/blob/a27d88f12aea9ca13e4c4e72f2eceb4cc6cc090f/libs/core/langchain_core/pydantic_v1/__init__.py unfortunately langchain is not fully compatible with pydantic v2, they are using a kind of hack right now, causing some compatible issue if we upgrade to pydantic v2, including...

@BorisPolonsky Thanks for the support! You can try this chart or maybe submit new issues, thanks for your previous contribution!

podman compose is not compatible with docker compose, read more at: https://www.redhat.com/sysadmin/podman-compose-docker-compose

please consider converting this issue to discussion to avoid linking all potential issue to this issue.