The Grok model API was added before, but after updating the API KEY, it's prompting Credentials validation failed with status code 404. #436

Closed
opened 2026-02-16 10:19:25 -05:00 by yindo · 8 comments
Owner

Originally created by @PiscesCNYu on GitHub (Jul 10, 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

1.5.1

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

The Grok model API was added before, but after updating the API KEY, it's prompting Credentials validation failed with status code 404.

API BASE:https://api.x.ai/v1
KEY:xai-SJal***********************************************************************bd3xg

By running the command on the server:

[root@aihost ~]# curl -H "Authorization: Bearer xai-SJal***********************************************************************bd3xgg" https://api.x.ai/v1/models

Results:
{"data":[{"id":"grok-2-1212","created":1737331200,"object":"model","owned_by":"xai"},{"id":"grok-2-vision-1212","created":1733961600,"object":"model","owned_by":"xai"},{"id":"grok-3","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-3-fast","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-3-mini","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-3-mini-fast","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-4-0709","created":1752019200,"object":"model","owned_by":"xai"},{"id":"grok-2-image-1212","created":1736726400,"object":"model","owned_by":"xai"}],"object":"list"}

The above approach works, which means the API BASE is not incorrect. However, since it was previously added, when directly saving the original configuration again, it still prompts Credentials validation failed with status code 404.

It now appears to be caused by some issue in Dify.

✔️ Expected Behavior

No response

Actual Behavior

No response

Originally created by @PiscesCNYu on GitHub (Jul 10, 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 1.5.1 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce The Grok model API was added before, but after updating the API KEY, it's prompting Credentials validation failed with status code 404. API BASE:https://api.x.ai/v1 KEY:xai-SJal***********************************************************************bd3xg **By running the command on the server:** [root@aihost ~]# curl -H "Authorization: Bearer xai-SJal***********************************************************************bd3xgg" https://api.x.ai/v1/models Results: {"data":[{"id":"grok-2-1212","created":1737331200,"object":"model","owned_by":"xai"},{"id":"grok-2-vision-1212","created":1733961600,"object":"model","owned_by":"xai"},{"id":"grok-3","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-3-fast","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-3-mini","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-3-mini-fast","created":1743724800,"object":"model","owned_by":"xai"},{"id":"grok-4-0709","created":1752019200,"object":"model","owned_by":"xai"},{"id":"grok-2-image-1212","created":1736726400,"object":"model","owned_by":"xai"}],"object":"list"} The above approach works, which means the API BASE is not incorrect. However, since it was previously added, when directly saving the original configuration again, it still prompts Credentials validation failed with status code 404. It now appears to be caused by some issue in Dify. ### ✔️ Expected Behavior _No response_ ### ❌ Actual Behavior _No response_
yindo closed this issue 2026-02-16 10:19:25 -05:00
Author
Owner

@dosubot[bot] commented on GitHub (Jul 10, 2025):

The 404 error during Grok API credential validation in Dify (even though curl works on the host) is almost certainly caused by Docker's Squid-based SSRF proxy blocking outbound requests to api.x.ai. By default, the proxy only allows a small set of domains, so requests to Grok/x.ai are denied inside the container, resulting in a 404 error from Dify—even if your API key and endpoint are correct.

To fix this, edit your Squid proxy config (usually at docker/ssrf_proxy/squid.conf.template) and add a line like:

acl allowed_domains dstdomain .x.ai
http_access allow allowed_domains

Make sure this line appears before any http_access deny all rule. Then restart the ssrf_proxy container (docker compose restart ssrf_proxy), and try saving your Grok model config again in Dify. This should resolve the 404 error and allow credential validation to succeed.

If you still see issues, check the Dify and proxy logs for errors and let me know what you find. For more details on how the proxy works and why this happens, see the Docker and Squid proxy configuration docs and Docker deployment README.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other  Join Discord Share on X

@dosubot[bot] commented on GitHub (Jul 10, 2025): <!-- Answer --> The 404 error during Grok API credential validation in Dify (even though curl works on the host) is almost certainly caused by Docker's Squid-based SSRF proxy blocking outbound requests to api.x.ai. By default, the proxy only allows a small set of domains, so requests to Grok/x.ai are denied inside the container, resulting in a 404 error from Dify—even if your API key and endpoint are correct. To fix this, edit your Squid proxy config (usually at `docker/ssrf_proxy/squid.conf.template`) and add a line like: ``` acl allowed_domains dstdomain .x.ai http_access allow allowed_domains ``` Make sure this line appears before any `http_access deny all` rule. Then restart the `ssrf_proxy` container (`docker compose restart ssrf_proxy`), and try saving your Grok model config again in Dify. This should resolve the 404 error and allow credential validation to succeed. If you still see issues, check the Dify and proxy logs for errors and let me know what you find. For more details on how the proxy works and why this happens, see [the Docker and Squid proxy configuration docs](https://github.com/langgenius/dify/blob/390e4cc0bf203a979e13694ed99ec9fda6b42cc8/docker/ssrf_proxy/squid.conf.template) and [Docker deployment README](https://github.com/langgenius/dify/blob/390e4cc0bf203a979e13694ed99ec9fda6b42cc8/docker/README.md). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/af2ef967-6bd3-44e1-b4cd-a63129014248?feedback_type=other)</sup>&nbsp;&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/langgenius/dify/issues/22165)
Author
Owner

@PiscesCNYu commented on GitHub (Jul 10, 2025):

I added the following through the above methods:

acl allowed_domains dstdomain .x.ai 
http_access allow allowed_domains

But I still cannot save, and get the same 404 error.
What I find more interesting is that Dify 1.6.0 has the same error, but the previously configured workflows that use Grok AI's API can still connect and work normally - they just can't be updated with new APIs. All other models work fine.@dosu@dosubot

@PiscesCNYu commented on GitHub (Jul 10, 2025): I added the following through the above methods: ``` acl allowed_domains dstdomain .x.ai http_access allow allowed_domains ``` But I still cannot save, and get the same 404 error. What I find more interesting is that Dify 1.6.0 has the same error, but the previously configured workflows that use Grok AI's API can still connect and work normally - they just can't be updated with new APIs. All other models work fine.[@dosu](https://go.dosu.dev/dosubot),[@dosubot](https://github.com/apps/dosubot)
Author
Owner

@dosubot[bot] commented on GitHub (Jul 10, 2025):

This behavior is expected in Dify's architecture: saving or updating model provider credentials triggers a live validation request (usually to the provider's /models endpoint via the plugin layer), and if that request fails (e.g., returns a 404), the update is blocked—even if existing workflows keep working with previously validated, cached credentials. Workflow executions do not re-validate credentials, so they continue to function until the config is changed or invalidated. This separation explains why your old Grok workflows work but you can't update or add new ones, while other providers are unaffected if their validation passes reference.

Since your Squid ACL changes didn't resolve the 404, it's likely that the validation request is still being blocked or misrouted by the proxy, or the container is not using the updated config. Please check the Squid proxy logs during a save attempt to .x.ai to confirm if the request is allowed or denied. Also, ensure the ssrf_proxy container was fully restarted after editing the ACL, and verify that no proxy-related environment variables are interfering inside the Dify container reference.

If the logs show the request is allowed but you still get a 404, try running a curl command to https://api.x.ai/v1/models from inside the Dify container (not just the host) to confirm network access. If that fails, the issue is still with Docker networking or proxy config. If it succeeds, check the Dify and plugin daemon logs for errors during credential validation.

Let me know what you find in the proxy logs or if you need help with specific log output.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other  Join Discord Share on X

@dosubot[bot] commented on GitHub (Jul 10, 2025): <!-- Answer --> This behavior is expected in Dify's architecture: saving or updating model provider credentials triggers a live validation request (usually to the provider's `/models` endpoint via the plugin layer), and if that request fails (e.g., returns a 404), the update is blocked—even if existing workflows keep working with previously validated, cached credentials. Workflow executions do not re-validate credentials, so they continue to function until the config is changed or invalidated. This separation explains why your old Grok workflows work but you can't update or add new ones, while other providers are unaffected if their validation passes [reference](https://github.com/langgenius/dify/blob/390e4cc0bf203a979e13694ed99ec9fda6b42cc8/api/services/model_provider_service.py). Since your Squid ACL changes didn't resolve the 404, it's likely that the validation request is still being blocked or misrouted by the proxy, or the container is not using the updated config. Please check the Squid proxy logs during a save attempt to `.x.ai` to confirm if the request is allowed or denied. Also, ensure the `ssrf_proxy` container was fully restarted after editing the ACL, and verify that no proxy-related environment variables are interfering inside the Dify container [reference](https://github.com/langgenius/dify/issues/14231). If the logs show the request is allowed but you still get a 404, try running a curl command to `https://api.x.ai/v1/models` from inside the Dify container (not just the host) to confirm network access. If that fails, the issue is still with Docker networking or proxy config. If it succeeds, check the Dify and plugin daemon logs for errors during credential validation. Let me know what you find in the proxy logs or if you need help with specific log output. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/c42b83a3-511f-4a40-a7d0-b754426a12be?feedback_type=other)</sup>&nbsp;&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/langgenius/dify/issues/22165)
Author
Owner

@PiscesCNYu commented on GitHub (Jul 10, 2025):

Could you provide a detailed troubleshooting plan? @dosu @dosubot

@PiscesCNYu commented on GitHub (Jul 10, 2025): Could you provide a detailed troubleshooting plan? [@dosu](https://go.dosu.dev/dosubot) [@dosubot](https://github.com/apps/dosubot)
Author
Owner

@dosubot[bot] commented on GitHub (Jul 10, 2025):

Here’s a detailed troubleshooting plan to isolate and resolve the Grok API credential validation 404 error in Dify (Docker):

  1. Confirm Squid Proxy ACLs: Double-check your docker/ssrf_proxy/squid.conf.template for the following, before any http_access deny all:

    acl allowed_domains dstdomain .x.ai
    http_access allow allowed_domains
    

    Restart the ssrf_proxy container after changes. Check that the config is loaded by inspecting the running container’s /etc/squid/squid.conf.

  2. Check Proxy Logs: While attempting to save the Grok credentials, tail the Squid logs (docker logs <ssrf_proxy_container>) and look for requests to .x.ai. Ensure they are not denied. If you see denies, the ACL is not effective or not reloaded.

  3. Test Network from Inside Containers:

    • Enter the Dify container (docker exec -it <dify_container> /bin/bash) and run:
      curl -H "Authorization: Bearer <your-key>" https://api.x.ai/v1/models
      
      If this fails, the issue is with Docker networking or proxy config, not Dify itself.
    • Repeat from the plugin daemon container if it’s separate.
  4. Check for Proxy Environment Variables: Inside the Dify and plugin daemon containers, run env | grep -i proxy. Unset any HTTP(S)_PROXY variables that might interfere with outbound requests.

  5. Review Dify and Plugin Daemon Logs: Look for errors during credential validation. The plugin daemon is responsible for making the actual API call and surfacing errors. A 404 here often means the request never reached the real endpoint or was blocked en route reference.

  6. Plugin Daemon Health: Make sure the plugin daemon is running and healthy. If it’s not, Dify can’t validate credentials.

  7. Cache and Restart: Dify caches plugin model schemas and credentials. After config changes, restart all related containers (dify, plugin daemon, ssrf_proxy) to clear caches and reload configs reference.

  8. Recent Validation Changes: Be aware that Dify 1.5.1+ added stricter model provider validation and caching, which can block updates if the provider or credentials are not accepted, even if old workflows still work reference.

If you follow these steps and still get a 404, please share the relevant Squid and Dify/plugin logs from a failed save attempt—those will pinpoint where the request is being blocked or misrouted.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other  Join Discord Share on X

@dosubot[bot] commented on GitHub (Jul 10, 2025): <!-- Answer --> Here’s a detailed troubleshooting plan to isolate and resolve the Grok API credential validation 404 error in Dify (Docker): 1. **Confirm Squid Proxy ACLs**: Double-check your `docker/ssrf_proxy/squid.conf.template` for the following, before any `http_access deny all`: ``` acl allowed_domains dstdomain .x.ai http_access allow allowed_domains ``` Restart the `ssrf_proxy` container after changes. Check that the config is loaded by inspecting the running container’s `/etc/squid/squid.conf`. 2. **Check Proxy Logs**: While attempting to save the Grok credentials, tail the Squid logs (`docker logs <ssrf_proxy_container>`) and look for requests to `.x.ai`. Ensure they are not denied. If you see denies, the ACL is not effective or not reloaded. 3. **Test Network from Inside Containers**: - Enter the Dify container (`docker exec -it <dify_container> /bin/bash`) and run: ``` curl -H "Authorization: Bearer <your-key>" https://api.x.ai/v1/models ``` If this fails, the issue is with Docker networking or proxy config, not Dify itself. - Repeat from the plugin daemon container if it’s separate. 4. **Check for Proxy Environment Variables**: Inside the Dify and plugin daemon containers, run `env | grep -i proxy`. Unset any HTTP(S)_PROXY variables that might interfere with outbound requests. 5. **Review Dify and Plugin Daemon Logs**: Look for errors during credential validation. The plugin daemon is responsible for making the actual API call and surfacing errors. A 404 here often means the request never reached the real endpoint or was blocked en route [reference](https://github.com/langgenius/dify/blob/390e4cc0bf203a979e13694ed99ec9fda6b42cc8/api/core/plugin/impl/model.py). 6. **Plugin Daemon Health**: Make sure the plugin daemon is running and healthy. If it’s not, Dify can’t validate credentials. 7. **Cache and Restart**: Dify caches plugin model schemas and credentials. After config changes, restart all related containers (`dify`, `plugin daemon`, `ssrf_proxy`) to clear caches and reload configs [reference](https://github.com/langgenius/dify/pull/14898). 8. **Recent Validation Changes**: Be aware that Dify 1.5.1+ added stricter model provider validation and caching, which can block updates if the provider or credentials are not accepted, even if old workflows still work [reference](https://github.com/langgenius/dify/pull/21582). If you follow these steps and still get a 404, please share the relevant Squid and Dify/plugin logs from a failed save attempt—those will pinpoint where the request is being blocked or misrouted. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/8836466a-6d05-4980-8523-23aa7b977dbf?feedback_type=other)</sup>&nbsp;&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/langgenius/dify/issues/22165)
Author
Owner

@PiscesCNYu commented on GitHub (Jul 10, 2025):

"I have removed the x.ai Grok API model, but when I try to add it again, it still shows 'Credentials validation failed with status code 404'.

I checked the request through the browser's network tab, and it directly returns:

{
"code": "invalid_param",
"message": "Credentials validation failed with status code 404",
"status": 400
}"

@dosu @dosubot

@PiscesCNYu commented on GitHub (Jul 10, 2025): "I have removed the x.ai Grok API model, but when I try to add it again, it still shows 'Credentials validation failed with status code 404'. I checked the request through the browser's network tab, and it directly returns: { "code": "invalid_param", "message": "Credentials validation failed with status code 404", "status": 400 }" [@dosu](https://go.dosu.dev/dosubot) [@dosubot](https://github.com/apps/dosubot)
Author
Owner

@dosubot[bot] commented on GitHub (Jul 10, 2025):

This 404 error is a known issue in self-hosted Dify Docker setups: the plugin_daemon service sometimes fails to handle the model credentials validation endpoint correctly, especially after removing and re-adding a provider. This can happen even if curl works on the host, because Dify’s validation runs inside the plugin_daemon container, which may have different network/proxy settings or cache state. The error is surfaced as a 400 with an "invalid_param" code, but the root cause is usually a 404 from the internal plugin_daemon call reference.

To troubleshoot:

  1. Try running your curl command from inside the plugin_daemon container, not just the host, to confirm network/proxy access.
  2. Check the Dify and plugin_daemon logs right after reproducing the error—look for lines mentioning /plugin/{id}/dispatch/model/validate_model_credentials and any 404 or related errors.
  3. Make sure all containers (dify, plugin_daemon, ssrf_proxy) are restarted after config changes to clear any stale cache or proxy rules.
  4. Double-check that your Squid ACL changes are active and not being overridden by other http_access deny rules.
  5. If you still see the error, share the relevant log excerpts from both Dify and plugin_daemon—these will pinpoint whether the request is being blocked, misrouted, or if there’s a bug in the plugin_daemon’s endpoint handling.

This issue is not related to your API key or endpoint, but to how Dify’s plugin_daemon validates credentials internally. Reviewing the logs is the fastest way to isolate the problem.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other  Join Discord Share on X

@dosubot[bot] commented on GitHub (Jul 10, 2025): <!-- Answer --> This 404 error is a known issue in self-hosted Dify Docker setups: the plugin_daemon service sometimes fails to handle the model credentials validation endpoint correctly, especially after removing and re-adding a provider. This can happen even if curl works on the host, because Dify’s validation runs inside the plugin_daemon container, which may have different network/proxy settings or cache state. The error is surfaced as a 400 with an "invalid_param" code, but the root cause is usually a 404 from the internal plugin_daemon call [reference](https://github.com/langgenius/dify/issues/20487). To troubleshoot: 1. Try running your curl command from inside the plugin_daemon container, not just the host, to confirm network/proxy access. 2. Check the Dify and plugin_daemon logs right after reproducing the error—look for lines mentioning `/plugin/{id}/dispatch/model/validate_model_credentials` and any 404 or related errors. 3. Make sure all containers (`dify`, `plugin_daemon`, `ssrf_proxy`) are restarted after config changes to clear any stale cache or proxy rules. 4. Double-check that your Squid ACL changes are active and not being overridden by other `http_access deny` rules. 5. If you still see the error, share the relevant log excerpts from both Dify and plugin_daemon—these will pinpoint whether the request is being blocked, misrouted, or if there’s a bug in the plugin_daemon’s endpoint handling. This issue is not related to your API key or endpoint, but to how Dify’s plugin_daemon validates credentials internally. Reviewing the logs is the fastest way to isolate the problem. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/eabeb1e6-0d0a-4150-bb5a-27f0df85e33b?feedback_type=other)</sup>&nbsp;&nbsp;[![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot)&nbsp;[![Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/langgenius/dify/issues/22165)
Author
Owner

@PiscesCNYu commented on GitHub (Jul 10, 2025):

The issue has been resolved—just update the x.ai Dify plugin.@dosu @dosubot

@PiscesCNYu commented on GitHub (Jul 10, 2025): The issue has been resolved—just update the x.ai Dify plugin.[@dosu](https://go.dosu.dev/dosubot) [@dosubot](https://github.com/apps/dosubot)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#436