[Configuration/Question] Potential Misconfiguration: Missing Model Provider Variables After .env Replacement #8509

Closed
opened 2026-02-21 18:26:04 -05:00 by yindo · 8 comments
Owner

Originally created by @Terry-20 on GitHub (Feb 21, 2025).

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

0.15.3

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

  1. Deploy Dify 0.15.3 on Windows 10 using Docker Compose:

    • Clone the Dify repository or use the official Docker Compose setup (docker-compose.yaml) in F:\Projects\dify\docker.
    • Run docker compose up -d to start Dify services (api, web, nginx, db, redis, etc.).
    • Access the Web interface at http://localhost:8090 and configure model providers (e.g., SiliconFlow and OpenAI) via "Settings > Workspace > Model Providers," setting API Keys and selecting models.
  2. Configure a Chatbot Application:

    • In the Web interface, create a chatbot application named "Chat Assistant Test" with public access URL http://localhost:5001/chat/atcV72uVS7E9e8Db.
    • Generate an API Key for the chatbot via "Access API" (e.g., app-uR5UvfWAwZMRwEdhbGpfEHAx) and configure it to use the SiliconFlow model provider with a valid API Key from the SiliconFlow platform.
  3. Modify or Replace the .env File (Accidental Misoperation):

    • During debugging for public network access, accidentally replace or modify the original .env file in F:\Projects\dify\docker (e.g., focusing only on port-related variables like EXPOSE_NGINX_PORT and NGINX_PORT).
    • Result: The .env file no longer contains SiliconFlow-related variables (e.g., SILICONFLOW_API_BASE, SILICONFLOW_API_KEY), though OpenAI variables (e.g., OPENAI_API_BASE) remain.
  4. Verify docker-compose.yaml Configuration:

    • Check F:\Projects\dify\docker\docker-compose.yaml and confirm that the api service’s environment section does not include SiliconFlow variables, while other variables (e.g., DB_HOST, REDIS_HOST) are present.
   # Example of docker-compose.yaml (partial)
   api:
     environment:
       - DB_HOST=db
       - REDIS_HOST=redis
       # Missing SILICONFLOW_API_BASE and SILICONFLOW_API_KEY
  1. Test Chatbot API Endpoint:
    • Use PowerShell to test the chatbot API endpoint with the generated API Key.
   $headers = @{
       "Authorization" = "Bearer app-uR5UvfWAwZMRwEdhbGpfEHAx"
       "Content-Type" = "application/json"
   }
   $body = '{"query": "你好","response_mode": "blocking","user": "jiangdailin","conversation_id": "","inputs": {}}'
   Invoke-WebRequest -Uri "http://localhost:5001/v1/chat-messages" -Method POST -Headers $headers -Body $body
  • Observe the error:
   {
       "code": "completion_request_error",
       "message": "[siliconflow] Server Unavailable Error, HTTPSConnectionPool(host='api.siliconflow.cn', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by ConnectTimeoutError(, 'Connection to api.siliconflow.cn timed out. (connect timeout=10)'))",
       "status": 400
   }
  1. Test Chatbot in Web Interface:

    • Navigate to http://localhost:8090, access "Chat Assistant Test," and send a message (e.g., "你好").
    • Observe long delays or no response, indicating a timeout issue with the SiliconFlow model provider.
  2. Check Knowledge Base API (Optional):

    • Test the knowledge base API endpoint with a valid knowledge base ID (e.g., 9957b6df-bf2e-4669-a000-eec4d88485aa).
   $headers = @{
       "Authorization" = "Bearer sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHX"
       "Content-Type" = "application/json"
   }
   $body = '{"name": "test_document","text": "这是一个测试文档","indexing_technique": "high_quality","process_rule": {"mode": "automatic"}}'
   Invoke-WebRequest -Uri "http://localhost:5001/api/v1/datasets/9957b6df-bf2e-4669-a000-eec4d88485aa/document/create-by-text" -Method POST -Headers $headers -Body $body
  • Observe the error:
Not Found
The requested URL was not found on the server.
  1. Review Logs:
    • Run docker compose logs api --tail 300 and note network errors like:
   2025-02-21 13:46:08.022 WARNING [Dummy-1] [version.py:37] - Check update version error: HTTPSConnectionPool(host='updates.dify.ai', port=443): Max retries exceeded with url: /?current_version=0.15.3 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fb626831580>: Failed to establish a new connection: [Errno 101] Network is unreachable')).

Screenshots and Logs:

Image
Image
docker compose logs api --tail 300.txt

  • Attached are screenshots of the Web interface’s "Model Providers" (showing SiliconFlow and OpenAI configurations) and "Chat Assistant Test" settings.
  • Attached is the full log output from docker compose logs api --tail 300 (provided in previous messages, formatted as a text file or described above).

✔️ Expected Behavior

  • The chatbot API (/v1/chat-messages) should return a successful response (e.g., {"event": "message", ...}) with the SiliconFlow model provider’s response.
  • The Web interface should respond promptly to chatbot messages.
  • The knowledge base API (/api/v1/datasets/...) should create a document successfully (e.g., return 200 OK with document details).

Actual Behavior

  • Chatbot API and Web interface experience connection timeouts to api.siliconflow.cn.
  • Knowledge base API returns "Not Found" errors.
  • .env and docker-compose.yaml lack SiliconFlow configuration variables, despite Web interface settings being intact.
Originally created by @Terry-20 on GitHub (Feb 21, 2025). ### Self Checks - [x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general). - [x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones. - [x] I confirm that I am using English to submit this report (我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542)). - [x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:) - [x] Please do not modify this template :) and fill in all the required fields. ### Dify version 0.15.3 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce 1. **Deploy Dify 0.15.3 on Windows 10 using Docker Compose:** - Clone the Dify repository or use the official Docker Compose setup (`docker-compose.yaml`) in `F:\Projects\dify\docker`. - Run `docker compose up -d` to start Dify services (api, web, nginx, db, redis, etc.). - Access the Web interface at `http://localhost:8090` and configure model providers (e.g., SiliconFlow and OpenAI) via "Settings > Workspace > Model Providers," setting API Keys and selecting models. 2. **Configure a Chatbot Application:** - In the Web interface, create a chatbot application named "Chat Assistant Test" with public access URL `http://localhost:5001/chat/atcV72uVS7E9e8Db`. - Generate an API Key for the chatbot via "Access API" (e.g., `app-uR5UvfWAwZMRwEdhbGpfEHAx`) and configure it to use the SiliconFlow model provider with a valid API Key from the SiliconFlow platform. 3. **Modify or Replace the `.env` File (Accidental Misoperation):** - During debugging for public network access, accidentally replace or modify the original `.env` file in `F:\Projects\dify\docker` (e.g., focusing only on port-related variables like `EXPOSE_NGINX_PORT` and `NGINX_PORT`). - Result: The `.env` file no longer contains SiliconFlow-related variables (e.g., `SILICONFLOW_API_BASE`, `SILICONFLOW_API_KEY`), though OpenAI variables (e.g., `OPENAI_API_BASE`) remain. 4. **Verify `docker-compose.yaml` Configuration:** - Check `F:\Projects\dify\docker\docker-compose.yaml` and confirm that the `api` service’s `environment` section does not include SiliconFlow variables, while other variables (e.g., `DB_HOST`, `REDIS_HOST`) are present. ```yaml # Example of docker-compose.yaml (partial) api: environment: - DB_HOST=db - REDIS_HOST=redis # Missing SILICONFLOW_API_BASE and SILICONFLOW_API_KEY ``` 5. **Test Chatbot API Endpoint:** - Use PowerShell to test the chatbot API endpoint with the generated API Key. ```powershell $headers = @{ "Authorization" = "Bearer app-uR5UvfWAwZMRwEdhbGpfEHAx" "Content-Type" = "application/json" } $body = '{"query": "你好","response_mode": "blocking","user": "jiangdailin","conversation_id": "","inputs": {}}' Invoke-WebRequest -Uri "http://localhost:5001/v1/chat-messages" -Method POST -Headers $headers -Body $body ``` - Observe the error: ```json { "code": "completion_request_error", "message": "[siliconflow] Server Unavailable Error, HTTPSConnectionPool(host='api.siliconflow.cn', port=443): Max retries exceeded with url: /v1/chat/completions (Caused by ConnectTimeoutError(, 'Connection to api.siliconflow.cn timed out. (connect timeout=10)'))", "status": 400 } ``` 6. **Test Chatbot in Web Interface:** - Navigate to `http://localhost:8090`, access "Chat Assistant Test," and send a message (e.g., "你好"). - Observe long delays or no response, indicating a timeout issue with the SiliconFlow model provider. 7. **Check Knowledge Base API (Optional):** - Test the knowledge base API endpoint with a valid knowledge base ID (e.g., `9957b6df-bf2e-4669-a000-eec4d88485aa`). ```powershell $headers = @{ "Authorization" = "Bearer sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHX" "Content-Type" = "application/json" } $body = '{"name": "test_document","text": "这是一个测试文档","indexing_technique": "high_quality","process_rule": {"mode": "automatic"}}' Invoke-WebRequest -Uri "http://localhost:5001/api/v1/datasets/9957b6df-bf2e-4669-a000-eec4d88485aa/document/create-by-text" -Method POST -Headers $headers -Body $body ``` - Observe the error: ```plaintext Not Found The requested URL was not found on the server. ``` 8. **Review Logs:** - Run `docker compose logs api --tail 300` and note network errors like: ```plaintext 2025-02-21 13:46:08.022 WARNING [Dummy-1] [version.py:37] - Check update version error: HTTPSConnectionPool(host='updates.dify.ai', port=443): Max retries exceeded with url: /?current_version=0.15.3 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fb626831580>: Failed to establish a new connection: [Errno 101] Network is unreachable')). ``` **Screenshots and Logs:** ![Image](https://github.com/user-attachments/assets/9d9262ef-c1d7-4bdc-b0e7-a7d695a9e33a) ![Image](https://github.com/user-attachments/assets/1fdd44c3-6a68-40be-a248-6a70f0dae20d) [docker compose logs api --tail 300.txt](https://github.com/user-attachments/files/18912989/docker.compose.logs.api.--tail.300.txt) - Attached are screenshots of the Web interface’s "Model Providers" (showing SiliconFlow and OpenAI configurations) and "Chat Assistant Test" settings. - Attached is the full log output from `docker compose logs api --tail 300` (provided in previous messages, formatted as a text file or described above). ### ✔️ Expected Behavior - The chatbot API (`/v1/chat-messages`) should return a successful response (e.g., `{"event": "message", ...}`) with the SiliconFlow model provider’s response. - The Web interface should respond promptly to chatbot messages. - The knowledge base API (`/api/v1/datasets/...`) should create a document successfully (e.g., return 200 OK with document details). ### ❌ Actual Behavior - Chatbot API and Web interface experience connection timeouts to `api.siliconflow.cn`. - Knowledge base API returns "Not Found" errors. - `.env` and `docker-compose.yaml` lack SiliconFlow configuration variables, despite Web interface settings being intact.
yindo added the good first issue label 2026-02-21 18:26:04 -05:00
yindo closed this issue 2026-02-21 18:26:04 -05:00
Author
Owner

@dosubot[bot] commented on GitHub (Feb 21, 2025):

Hey @Terry-20! 👋 I'm here to help you with any bugs, questions, or contributions. Let's tackle this together!

To resolve the issue of missing SiliconFlow configuration variables in your .env and docker-compose.yaml files, follow these steps:

  1. Restore the .env File: Ensure that your .env file includes all necessary SiliconFlow-related variables, such as SILICONFLOW_API_BASE and SILICONFLOW_API_KEY. You can refer to a backup of your .env file or the .env.example file to restore these variables.

  2. Run the generate_docker_compose Script: Use the generate_docker_compose script to regenerate your docker-compose.yaml file. This script will parse the .env file and ensure that all required environment variables are included in the docker-compose.yaml file. Make sure the script is executed in the directory where your .env and docker-compose-template.yaml files are located [1].

  3. Verify the Configuration: After running the script, check the docker-compose.yaml file to confirm that the SiliconFlow variables are present in the environment section of the api service.

  4. Restart the Services: Once the configuration is corrected, restart your Docker services using docker compose down followed by docker compose up -d to apply the changes.

These steps should help resolve the connection timeouts and "Not Found" errors by ensuring that the necessary configuration variables are correctly set.

To continue talking to Dosu, mention @dosu.


Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other

@dosubot[bot] commented on GitHub (Feb 21, 2025): <!-- Greeting --> Hey @Terry-20! 👋 I'm here to help you with any bugs, questions, or contributions. Let's tackle this together! <!-- Answer --> To resolve the issue of missing SiliconFlow configuration variables in your `.env` and `docker-compose.yaml` files, follow these steps: 1. **Restore the `.env` File**: Ensure that your `.env` file includes all necessary SiliconFlow-related variables, such as `SILICONFLOW_API_BASE` and `SILICONFLOW_API_KEY`. You can refer to a backup of your `.env` file or the `.env.example` file to restore these variables. 2. **Run the `generate_docker_compose` Script**: Use the `generate_docker_compose` script to regenerate your `docker-compose.yaml` file. This script will parse the `.env` file and ensure that all required environment variables are included in the `docker-compose.yaml` file. Make sure the script is executed in the directory where your `.env` and `docker-compose-template.yaml` files are located <sup>[[1]](https://github.com/langgenius/dify/blob/main/docker/generate_docker_compose)</sup>. 3. **Verify the Configuration**: After running the script, check the `docker-compose.yaml` file to confirm that the SiliconFlow variables are present in the `environment` section of the `api` service. 4. **Restart the Services**: Once the configuration is corrected, restart your Docker services using `docker compose down` followed by `docker compose up -d` to apply the changes. These steps should help resolve the connection timeouts and "Not Found" errors by ensuring that the necessary configuration variables are correctly set. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/9052ce7a-f7ae-4066-9f9a-4c3c85a05dce?feedback_type=other)</sup>
Author
Owner

@Terry-20 commented on GitHub (Feb 21, 2025):

@dosu, thank you so much for your quick and helpful response! I really appreciate your guidance on restoring the SiliconFlow configuration variables in my .env and docker-compose.yaml files using the generate_docker_compose script and docker-compose-template.yaml. I’ve identified these files in my F:\Projects\dify\docker directory and will follow your steps to test the solution. I’ll update the issue with the results after testing tomorrow. Looking forward to resolving this issue with your continued support!

@Terry-20 commented on GitHub (Feb 21, 2025): @dosu, thank you so much for your quick and helpful response! I really appreciate your guidance on restoring the SiliconFlow configuration variables in my `.env` and `docker-compose.yaml` files using the `generate_docker_compose` script and `docker-compose-template.yaml`. I’ve identified these files in my `F:\Projects\dify\docker` directory and will follow your steps to test the solution. I’ll update the issue with the results after testing tomorrow. Looking forward to resolving this issue with your continued support!
Author
Owner

@dosubot[bot] commented on GitHub (Feb 21, 2025):

You're welcome! I'm glad I could help. Feel free to reach out if you encounter any issues or need further assistance while testing. Looking forward to hearing about your progress. Good luck!

To continue talking to Dosu, mention @dosu.


Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other

@dosubot[bot] commented on GitHub (Feb 21, 2025): <!-- Answer --> You're welcome! I'm glad I could help. Feel free to reach out if you encounter any issues or need further assistance while testing. Looking forward to hearing about your progress. Good luck! <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/dd1c8aaa-c932-47de-a313-8b30881fc424?feedback_type=other)</sup>
Author
Owner

@crazywoola commented on GitHub (Feb 21, 2025):

Here I think you only need to change env settings listed in (first screen page)https://docs.dify.ai/getting-started/install-self-hosted/environments

If you want to change the Nginx port, please refer to https://docs.dify.ai/getting-started/install-self-hosted/faqs#id-5.-how-to-change-the-port

Result: The .env file no longer contains SiliconFlow-related variables (e.g., SILICONFLOW_API_BASE, SILICONFLOW_API_KEY), though OpenAI variables (e.g., OPENAI_API_BASE) remain.

This should not be changed. I don't think we have env settings like these for Silliconflow.

@crazywoola commented on GitHub (Feb 21, 2025): Here I think you only need to change env settings listed in (first screen page)https://docs.dify.ai/getting-started/install-self-hosted/environments If you want to change the Nginx port, please refer to https://docs.dify.ai/getting-started/install-self-hosted/faqs#id-5.-how-to-change-the-port ``` Result: The .env file no longer contains SiliconFlow-related variables (e.g., SILICONFLOW_API_BASE, SILICONFLOW_API_KEY), though OpenAI variables (e.g., OPENAI_API_BASE) remain. ``` This should not be changed. I don't think we have env settings like these for Silliconflow.
Author
Owner

@Terry-20 commented on GitHub (Feb 22, 2025):

@crazywoola, thank you so much for your helpful and clear response! I really appreciate your guidance on the .env file configuration and confirming that SiliconFlow-related variables like SILICONFLOW_API_BASE and SILICONFLOW_API_KEY should not be included in the .env file. I’ll carefully review the official documentation on environment variables at https://docs.dify.ai/getting-started/install-self-hosted/environments as you suggested, and I’ll follow your advice to ensure my configuration aligns with Dify’s design.

I’m quite surprised by this situation—I initially thought the chatbot unresponsiveness might be due to using a VPN during debugging, but even after disabling it, the issue persisted, which made me feel like I had run into a major problem. Reflecting on it now, as a newcomer without much experience, I realize it’s normal to encounter various issues during the first deployment. If needed, I’m prepared to uninstall and redeploy Dify to resolve this. Once again, thank you for your support—it’s been invaluable!

@Terry-20 commented on GitHub (Feb 22, 2025): @crazywoola, thank you so much for your helpful and clear response! I really appreciate your guidance on the .env file configuration and confirming that SiliconFlow-related variables like `SILICONFLOW_API_BASE` and `SILICONFLOW_API_KEY` should not be included in the .env file. I’ll carefully review the official documentation on environment variables at `https://docs.dify.ai/getting-started/install-self-hosted/environments` as you suggested, and I’ll follow your advice to ensure my configuration aligns with Dify’s design. I’m quite surprised by this situation—I initially thought the chatbot unresponsiveness might be due to using a VPN during debugging, but even after disabling it, the issue persisted, which made me feel like I had run into a major problem. Reflecting on it now, as a newcomer without much experience, I realize it’s normal to encounter various issues during the first deployment. If needed, I’m prepared to uninstall and redeploy Dify to resolve this. Once again, thank you for your support—it’s been invaluable!
Author
Owner

@dosubot[bot] commented on GitHub (Mar 25, 2025):

Hi, @Terry-20. I'm Dosu, and I'm helping the Dify team manage their backlog and am marking this issue as stale.

Issue Summary

  • You reported missing SiliconFlow-related environment variables after modifying the .env file on Windows 10 with Docker Compose.
  • I provided a solution to restore the .env file and use the generate_docker_compose script.
  • Crazywoola clarified that SiliconFlow variables should not be in the .env file and suggested reviewing the official documentation.
  • You acknowledged and appreciated the guidance provided by both Crazywoola and me.

Next Steps

  • Please confirm if this issue is still relevant to the latest version of the Dify repository. If it is, you can keep the discussion open by commenting on the issue.
  • Otherwise, this issue will be automatically closed in 15 days.

Thank you for your understanding and contribution!

@dosubot[bot] commented on GitHub (Mar 25, 2025): Hi, @Terry-20. I'm [Dosu](https://dosu.dev), and I'm helping the Dify team manage their backlog and am marking this issue as stale. **Issue Summary** - You reported missing SiliconFlow-related environment variables after modifying the `.env` file on Windows 10 with Docker Compose. - I provided a solution to restore the `.env` file and use the `generate_docker_compose` script. - Crazywoola clarified that SiliconFlow variables should not be in the `.env` file and suggested reviewing the official documentation. - You acknowledged and appreciated the guidance provided by both Crazywoola and me. **Next Steps** - Please confirm if this issue is still relevant to the latest version of the Dify repository. If it is, you can keep the discussion open by commenting on the issue. - Otherwise, this issue will be automatically closed in 15 days. Thank you for your understanding and contribution!
Author
Owner

@Terry-20 commented on GitHub (Mar 26, 2025):

It's now confirmed that crazywoola's response to this issue is correct:
The .env file does not contain the specific settings for calling LLM model providers (such as SiliconFlow).
The error described in the issue is related to the settings of some module service addresses and ports in the .env file.

Configuring this information requires careful attention. We hope the Dify team can provide recommended configuration guidelines for different application scenarios to better help users avoid similar problems. Thanks again for the help from crazywoola and the dosubot bot!

@Terry-20 commented on GitHub (Mar 26, 2025): It's now confirmed that crazywoola's response to this issue is correct: The .env file does not contain the specific settings for calling LLM model providers (such as SiliconFlow). The error described in the issue is related to the settings of some module service addresses and ports in the .env file. Configuring this information requires careful attention. We hope the Dify team can provide recommended configuration guidelines for different application scenarios to better help users avoid similar problems. Thanks again for the help from crazywoola and the dosubot bot!
Author
Owner

@dosubot[bot] commented on GitHub (Mar 26, 2025):

Thank you, Terry-20, for closing the issue! We appreciate your help in keeping the repository organized.

@dosubot[bot] commented on GitHub (Mar 26, 2025): Thank you, Terry-20, for closing the issue! We appreciate your help in keeping the repository organized.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#8509