Add finish_reason to the Bedrock plugin #620

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

Originally created by @yosse95ai on GitHub (Sep 4, 2025).

Self Checks

  • I have read the Contributing Guide and Language Policy.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report, otherwise it will be closed.
  • Please do not modify this template :) and fill in all the required fields.

1. Is this request related to a challenge you're experiencing? Tell me about your story.

I want to use a loop node to repeat the generation of text as long as the finish_reason is max_token, but the output of the Bedrock plugin does not include the finish_reason. The only output I can receive at the next node is text. Is this bag?

Image

2. Additional context or comments

My Bedrock plugin is v0.0.34 now.
On the other hand, the Claude 3.5 Sonnet output itself contains a finish_reason. We need a way to reference this in the next node.

Image

3. Can you help us with this feature?

  • I am interested in contributing to this feature.
Originally created by @yosse95ai on GitHub (Sep 4, 2025). ### Self Checks - [x] I have read the [Contributing Guide](https://github.com/langgenius/dify/blob/main/CONTRIBUTING.md) and [Language Policy](https://github.com/langgenius/dify/issues/1542). - [x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify-official-plugins/issues), including closed ones. - [x] I confirm that I am using English to submit this report, otherwise it will be closed. - [x] Please do not modify this template :) and fill in all the required fields. ### 1. Is this request related to a challenge you're experiencing? Tell me about your story. I want to use a loop node to repeat the generation of text as long as the finish_reason is max_token, but the output of the Bedrock plugin does not include the finish_reason. The only output I can receive at the next node is text. Is this bag? <img width="554" height="528" alt="Image" src="https://github.com/user-attachments/assets/a682b26f-3822-4d9b-ba95-2761e8df1091" /> ### 2. Additional context or comments My Bedrock plugin is v0.0.34 now. On the other hand, the Claude 3.5 Sonnet output itself contains a finish_reason. We need a way to reference this in the next node. <img width="780" height="998" alt="Image" src="https://github.com/user-attachments/assets/30809af9-8a35-4410-b249-c9eda3b63a86" /> ### 3. Can you help us with this feature? - [ ] I am interested in contributing to this feature.
yindo added the enhancement label 2026-02-16 10:19:56 -05:00
yindo closed this issue 2026-02-16 10:19:56 -05:00
Author
Owner

@yosse95ai commented on GitHub (Sep 7, 2025):

This issue is related https://github.com/langgenius/dify-official-plugins/issues/1450

@yosse95ai commented on GitHub (Sep 7, 2025): This issue is related https://github.com/langgenius/dify-official-plugins/issues/1450
Author
Owner

@dosubot[bot] commented on GitHub (Sep 23, 2025):

Hi, @yosse95ai. I'm Dosu, and I'm helping the dify-official-plugins team manage their backlog and am marking this issue as stale.

Issue Summary:

  • You requested adding the "finish_reason" field to the Bedrock plugin's output to control looping behavior based on generation stopping conditions.
  • Currently, only the generated text is available for downstream nodes, which limits functionality.
  • You referenced a related issue in the dify-official-plugins repository for additional context.
  • There have been no maintainer comments or updates on this issue so far.

Next Steps:

  • Please let me know if this issue is still relevant with the latest version of the dify-official-plugins repository by commenting here.
  • If I do not hear back within 5 days, this issue will be automatically closed.

Thank you for your understanding and contribution!

@dosubot[bot] commented on GitHub (Sep 23, 2025): Hi, @yosse95ai. I'm [Dosu](https://dosu.dev), and I'm helping the dify-official-plugins team manage their backlog and am marking this issue as stale. **Issue Summary:** - You requested adding the "finish_reason" field to the Bedrock plugin's output to control looping behavior based on generation stopping conditions. - Currently, only the generated text is available for downstream nodes, which limits functionality. - You referenced a related issue in the dify-official-plugins repository for additional context. - There have been no maintainer comments or updates on this issue so far. **Next Steps:** - Please let me know if this issue is still relevant with the latest version of the dify-official-plugins repository by commenting here. - If I do not hear back within 5 days, this issue will be automatically closed. Thank you for your understanding and contribution!
Author
Owner

@yosse95ai commented on GitHub (Sep 23, 2025):

This is still the case in the latest version.

@yosse95ai commented on GitHub (Sep 23, 2025): This is still the case in the latest version.
Author
Owner

@dosubot[bot] commented on GitHub (Sep 23, 2025):

@crazywoola The user confirms that the issue with adding the "finish_reason" field to the Bedrock plugin's output is still present in the latest version and needs attention. Could you please assist with this?

@dosubot[bot] commented on GitHub (Sep 23, 2025): @crazywoola The user confirms that the issue with adding the "finish_reason" field to the Bedrock plugin's output is still present in the latest version and needs attention. Could you please assist with this?
Author
Owner

@yosse95ai commented on GitHub (Nov 26, 2025):

@dosu I'd like you to fix this bug.

@yosse95ai commented on GitHub (Nov 26, 2025): @dosu I'd like you to fix this bug.
Author
Owner

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

The Bedrock plugin doesn't output finish_reason because it's not included in the final result object, even though the Bedrock API provides it in both synchronous and streaming responses. To fix this, the plugin code should be updated so that the _handle_converse_response method attaches finish_reason from the API response to the output object (LLMResult), just like it's done for streaming chunks in _handle_converse_stream_response see code reference.

If you want to contribute a fix, you’d need to:

  • Update the relevant response handler methods to extract stopReason from the API response.
  • Add a finish_reason field to the output object so it’s available for downstream workflow nodes.

This change would make the Bedrock plugin consistent with other plugins like Claude 3.5 Sonnet and enable loop control based on finish_reason. There’s no workaround in the current release, so a code update is needed for this feature.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Open in Cursor Join Discord Share on X

@dosubot[bot] commented on GitHub (Nov 26, 2025): <!-- Answer --> The Bedrock plugin doesn't output `finish_reason` because it's not included in the final result object, even though the Bedrock API provides it in both synchronous and streaming responses. To fix this, the plugin code should be updated so that the `_handle_converse_response` method attaches `finish_reason` from the API response to the output object (`LLMResult`), just like it's done for streaming chunks in `_handle_converse_stream_response` [see code reference](https://github.com/langgenius/dify-official-plugins/blob/c1e3d3d226df61ac68badc9842db016e2169ef12/models/bedrock/models/llm/llm.py#L495-L1433). If you want to contribute a fix, you’d need to: - Update the relevant response handler methods to extract `stopReason` from the API response. - Add a `finish_reason` field to the output object so it’s available for downstream workflow nodes. This change would make the Bedrock plugin consistent with other plugins like Claude 3.5 Sonnet and enable loop control based on `finish_reason`. There’s no workaround in the current release, so a code update is needed for this feature. <!-- 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/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/b292c11b-9593-4905-9b93-d9178d6ad358?feedback_type=other)</sup> [![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=The%20Bedrock%20plugin%20doesn%27t%20output%20%60finish_reason%60%20because%20it%27s%20not%20included%20in%20the%20final%20result%20object%2C%20even%20though%20the%20Bedrock%20API%20provides%20it%20in%20both%20synchronous%20and%20streaming%20responses.%20To%20fix%20this%2C%20the%20plugin%20code%20should%20be%20updated%20so%20that%20the%20%60_handle_converse_response%60%20method%20attaches%20%60finish_reason%60%20from%20the%20API%20response%20to%20the%20output%20object%20%28%60LLMResult%60%29%2C%20just%20like%20it%27s%20done%20for%20streaming%20chunks%20in%20%60_handle_converse_stream_response%60%20%5Bsee%20code%20reference%5D%28https%3A//github.com/langgenius/dify-official-plugins/blob/c1e3d3d226df61ac68badc9842db016e2169ef12/models/bedrock/models/llm/llm.py%23L495-L1433%29.%0A%0AIf%20you%20want%20to%20contribute%20a%20fix%2C%20you%E2%80%99d%20need%20to%3A%0A-%20Update%20the%20relevant%20response%20handler%20methods%20to%20extract%20%60stopReason%60%20from%20the%20API%20response.%0A-%20Add%20a%20%60finish_reason%60%20field%20to%20the%20output%20object%20so%20it%E2%80%99s%20available%20for%20downstream%20workflow%20nodes.%0A%0AThis%20change%20would%20make%20the%20Bedrock%20plugin%20consistent%20with%20other%20plugins%20like%20Claude%203.5%20Sonnet%20and%20enable%20loop%20control%20based%20on%20%60finish_reason%60.%20There%E2%80%99s%20no%20workaround%20in%20the%20current%20release%2C%20so%20a%20code%20update%20is%20needed%20for%20this%20feature.)&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-official-plugins/issues/1658)
Author
Owner

@yosse95ai commented on GitHub (Nov 26, 2025):

@dosu Is it possible to reopen this issue and ask other contributors to make the fix?

@yosse95ai commented on GitHub (Nov 26, 2025): @dosu Is it possible to reopen this issue and ask other contributors to make the fix?
Author
Owner

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

Yes, it’s possible to request that an issue be reopened and ask contributors to make the fix. In this repository, users have previously commented on closed issues to explain the ongoing need and request that maintainers reopen them. Maintainers or users with the right permissions can then reopen the issue and invite contributors to help. Tagging relevant maintainers or contributors in your comment can help get attention and increase the chances of the issue being addressed. You can see an example of this process in action here: example thread.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Open in Cursor Join Discord Share on X

@dosubot[bot] commented on GitHub (Nov 26, 2025): <!-- Answer --> Yes, it’s possible to request that an issue be reopened and ask contributors to make the fix. In this repository, users have previously commented on closed issues to explain the ongoing need and request that maintainers reopen them. Maintainers or users with the right permissions can then reopen the issue and invite contributors to help. Tagging relevant maintainers or contributors in your comment can help get attention and increase the chances of the issue being addressed. You can see an example of this process in action here: [example thread](https://github.com/langgenius/dify-official-plugins/issues/476#issuecomment-2731607139). <!-- 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/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/a3ebe64f-09cd-4741-9a69-2ea53cc7e903?feedback_type=other)</sup> [![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=Yes%2C%20it%E2%80%99s%20possible%20to%20request%20that%20an%20issue%20be%20reopened%20and%20ask%20contributors%20to%20make%20the%20fix.%20In%20this%20repository%2C%20users%20have%20previously%20commented%20on%20closed%20issues%20to%20explain%20the%20ongoing%20need%20and%20request%20that%20maintainers%20reopen%20them.%20Maintainers%20or%20users%20with%20the%20right%20permissions%20can%20then%20reopen%20the%20issue%20and%20invite%20contributors%20to%20help.%20Tagging%20relevant%20maintainers%20or%20contributors%20in%20your%20comment%20can%20help%20get%20attention%20and%20increase%20the%20chances%20of%20the%20issue%20being%20addressed.%20You%20can%20see%20an%20example%20of%20this%20process%20in%20action%20here%3A%20%5Bexample%20thread%5D%28https%3A//github.com/langgenius/dify-official-plugins/issues/476%23issuecomment-2731607139%29.)&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-official-plugins/issues/1658)
Author
Owner

@yosse95ai commented on GitHub (Nov 26, 2025):

@dosu Sorry, I don't have permission to reopen it. I can't press the button.

@yosse95ai commented on GitHub (Nov 26, 2025): @dosu Sorry, I don't have permission to reopen it. I can't press the button.
Author
Owner

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

You’re right—only maintainers or users with special permissions can reopen issues on GitHub. The best way forward is to comment on the closed issue (#1450), clearly explaining that the bug is still present in the latest version and why it’s important to fix. Tagging maintainers (like @crazywoola) in your comment can help get their attention and increase the chances of the issue being reopened and prioritized. Here’s a template you can use:

This issue is still present in Bedrock plugin v0.0.34. The missing `finish_reason` field is blocking important workflow logic (like loop nodes). Could a maintainer please reopen this issue or advise on next steps? @crazywoola

Once you comment, keep an eye on the thread for any updates or requests for more info.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Open in Cursor Join Discord Share on X

@dosubot[bot] commented on GitHub (Nov 26, 2025): <!-- Answer --> You’re right—only maintainers or users with special permissions can reopen issues on GitHub. The best way forward is to comment on the closed issue (#1450), clearly explaining that the bug is still present in the latest version and why it’s important to fix. Tagging maintainers (like @crazywoola) in your comment can help get their attention and increase the chances of the issue being reopened and prioritized. Here’s a template you can use: ``` This issue is still present in Bedrock plugin v0.0.34. The missing `finish_reason` field is blocking important workflow logic (like loop nodes). Could a maintainer please reopen this issue or advise on next steps? @crazywoola ``` Once you comment, keep an eye on the thread for any updates or requests for more info. <!-- 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/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/6fda488e-c62a-4389-831d-3a05c55b6297?feedback_type=other)</sup> [![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=You%E2%80%99re%20right%E2%80%94only%20maintainers%20or%20users%20with%20special%20permissions%20can%20reopen%20issues%20on%20GitHub.%20The%20best%20way%20forward%20is%20to%20comment%20on%20the%20closed%20issue%20%28%231450%29%2C%20clearly%20explaining%20that%20the%20bug%20is%20still%20present%20in%20the%20latest%20version%20and%20why%20it%E2%80%99s%20important%20to%20fix.%20Tagging%20maintainers%20%28like%20%40crazywoola%29%20in%20your%20comment%20can%20help%20get%20their%20attention%20and%20increase%20the%20chances%20of%20the%20issue%20being%20reopened%20and%20prioritized.%20Here%E2%80%99s%20a%20template%20you%20can%20use%3A%0A%0A%60%60%60%0AThis%20issue%20is%20still%20present%20in%20Bedrock%20plugin%20v0.0.34.%20The%20missing%20%60finish_reason%60%20field%20is%20blocking%20important%20workflow%20logic%20%28like%20loop%20nodes%29.%20Could%20a%20maintainer%20please%20reopen%20this%20issue%20or%20advise%20on%20next%20steps%3F%20%40crazywoola%0A%60%60%60%0A%0AOnce%20you%20comment%2C%20keep%20an%20eye%20on%20the%20thread%20for%20any%20updates%20or%20requests%20for%20more%20info.)&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-official-plugins/issues/1658)
Author
Owner

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

@crazywoola The user yosse95ai mentioned they don't have permission to reopen the issue and still need help with it. Could you please assist with this?

@dosubot[bot] commented on GitHub (Nov 26, 2025): @crazywoola The user yosse95ai mentioned they don't have permission to reopen the issue and still need help with it. Could you please assist with this?
Author
Owner

@yosse95ai commented on GitHub (Dec 17, 2025):

@dosu @crazywoola I want to get the finish_reason from Bedrock node.

@yosse95ai commented on GitHub (Dec 17, 2025): @dosu @crazywoola I want to get the finish_reason from Bedrock node.
Author
Owner

@dosubot[bot] commented on GitHub (Dec 17, 2025):

The Bedrock plugin does not currently expose finish_reason in its output, even though the API provides it. The code reads the API's stopReason field but does not attach it to the final result object, so downstream nodes can't access it for workflow control. To fix this, the _handle_converse_response method should be updated to extract stopReason from the response and add it as a finish_reason field in the returned LLMResult object—just like the streaming path already does for chunk deltas. There’s no workaround until this change is made, so a code update is required to enable this feature for workflow nodes. You can see the relevant code and technical details here.

To reply, just mention @dosu.


How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

Open in Cursor Join Discord Share on X

@dosubot[bot] commented on GitHub (Dec 17, 2025): <!-- Answer --> The Bedrock plugin does not currently expose `finish_reason` in its output, even though the API provides it. The code reads the API's `stopReason` field but does not attach it to the final result object, so downstream nodes can't access it for workflow control. To fix this, the `_handle_converse_response` method should be updated to extract `stopReason` from the response and add it as a `finish_reason` field in the returned `LLMResult` object—just like the streaming path already does for chunk deltas. There’s no workaround until this change is made, so a code update is required to enable this feature for workflow nodes. You can see the relevant code and technical details [here](https://github.com/langgenius/dify-official-plugins/blob/2ebd27b66f3279c5de3697ccfc7477ef0582537a/models/bedrock/models/llm/llm.py#L479-L711). <!-- 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/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/17ac5ca9-0774-48e6-ab88-4a4b8655b57b?feedback_type=other)</sup> [![Open in Cursor](https://dosu.dev/dosu-in-cursor.svg)](https://cursor.com/link/prompt?text=The%20Bedrock%20plugin%20does%20not%20currently%20expose%20%60finish_reason%60%20in%20its%20output%2C%20even%20though%20the%20API%20provides%20it.%20The%20code%20reads%20the%20API%27s%20%60stopReason%60%20field%20but%20does%20not%20attach%20it%20to%20the%20final%20result%20object%2C%20so%20downstream%20nodes%20can%27t%20access%20it%20for%20workflow%20control.%20To%20fix%20this%2C%20the%20%60_handle_converse_response%60%20method%20should%20be%20updated%20to%20extract%20%60stopReason%60%20from%20the%20response%20and%20add%20it%20as%20a%20%60finish_reason%60%20field%20in%20the%20returned%20%60LLMResult%60%20object%E2%80%94just%20like%20the%20streaming%20path%20already%20does%20for%20chunk%20deltas.%20There%E2%80%99s%20no%20workaround%20until%20this%20change%20is%20made%2C%20so%20a%20code%20update%20is%20required%20to%20enable%20this%20feature%20for%20workflow%20nodes.%20You%20can%20see%20the%20relevant%20code%20and%20technical%20details%20%5Bhere%5D%28https%3A//github.com/langgenius/dify-official-plugins/blob/2ebd27b66f3279c5de3697ccfc7477ef0582537a/models/bedrock/models/llm/llm.py%23L479-L711%29.)&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-official-plugins/issues/1658)
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#620