|
| 1 | +name: "✨ Feature Request" |
| 2 | +description: Request a new feature or enhancement for LangChain. For questions, please use the LangChain forum. |
| 3 | +labels: ["feature request"] |
| 4 | +type: feature |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thank you for taking the time to request a new feature. |
| 10 | +
|
| 11 | + Use this to request NEW FEATURES or ENHANCEMENTS in LangChain. For bug reports, please use the bug report template. For usage questions and general design questions, please use the [LangChain Forum](https://forum.langchain.com/). |
| 12 | +
|
| 13 | + Relevant links to check before filing a feature request to see if your request has already been made or |
| 14 | + if there's another way to achieve what you want: |
| 15 | +
|
| 16 | + * [LangChain Forum](https://forum.langchain.com/), |
| 17 | + * [LangChain documentation with the integrated search](https://docs.langchain.com/oss/python/langchain/overview), |
| 18 | + * [API Reference](https://python.langchain.com/api_reference/), |
| 19 | + * [LangChain ChatBot](https://chat.langchain.com/) |
| 20 | + * [GitHub search](https://github.com/langchain-ai/langchain), |
| 21 | + - type: checkboxes |
| 22 | + id: checks |
| 23 | + attributes: |
| 24 | + label: Checked other resources |
| 25 | + description: Please confirm and check all the following options. |
| 26 | + options: |
| 27 | + - label: This is a feature request, not a bug report or usage question. |
| 28 | + required: true |
| 29 | + - label: I added a clear and descriptive title that summarizes the feature request. |
| 30 | + required: true |
| 31 | + - label: I used the GitHub search to find a similar feature request and didn't find it. |
| 32 | + required: true |
| 33 | + - label: I checked the LangChain documentation and API reference to see if this feature already exists. |
| 34 | + required: true |
| 35 | + - label: This is not related to the langchain-community package. |
| 36 | + required: true |
| 37 | + - type: textarea |
| 38 | + id: feature-description |
| 39 | + validations: |
| 40 | + required: true |
| 41 | + attributes: |
| 42 | + label: Feature Description |
| 43 | + description: | |
| 44 | + Please provide a clear and concise description of the feature you would like to see added to LangChain. |
| 45 | + |
| 46 | + What specific functionality are you requesting? Be as detailed as possible. |
| 47 | + placeholder: | |
| 48 | + I would like LangChain to support... |
| 49 | + |
| 50 | + This feature would allow users to... |
| 51 | + - type: textarea |
| 52 | + id: use-case |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + attributes: |
| 56 | + label: Use Case |
| 57 | + description: | |
| 58 | + Describe the specific use case or problem this feature would solve. |
| 59 | + |
| 60 | + Why do you need this feature? What problem does it solve for you or other users? |
| 61 | + placeholder: | |
| 62 | + I'm trying to build an application that... |
| 63 | + |
| 64 | + Currently, I have to work around this by... |
| 65 | + |
| 66 | + This feature would help me/users to... |
| 67 | + - type: textarea |
| 68 | + id: proposed-solution |
| 69 | + validations: |
| 70 | + required: false |
| 71 | + attributes: |
| 72 | + label: Proposed Solution |
| 73 | + description: | |
| 74 | + If you have ideas about how this feature could be implemented, please describe them here. |
| 75 | + |
| 76 | + This is optional but can be helpful for maintainers to understand your vision. |
| 77 | + placeholder: | |
| 78 | + I think this could be implemented by... |
| 79 | + |
| 80 | + The API could look like... |
| 81 | + |
| 82 | + ```python |
| 83 | + # Example of how the feature might work |
| 84 | + ``` |
| 85 | + - type: textarea |
| 86 | + id: alternatives |
| 87 | + validations: |
| 88 | + required: false |
| 89 | + attributes: |
| 90 | + label: Alternatives Considered |
| 91 | + description: | |
| 92 | + Have you considered any alternative solutions or workarounds? |
| 93 | + |
| 94 | + What other approaches have you tried or considered? |
| 95 | + placeholder: | |
| 96 | + I've tried using... |
| 97 | + |
| 98 | + Alternative approaches I considered: |
| 99 | + 1. ... |
| 100 | + 2. ... |
| 101 | + |
| 102 | + But these don't work because... |
| 103 | + - type: textarea |
| 104 | + id: additional-context |
| 105 | + validations: |
| 106 | + required: false |
| 107 | + attributes: |
| 108 | + label: Additional Context |
| 109 | + description: | |
| 110 | + Add any other context, screenshots, examples, or references that would help explain your feature request. |
| 111 | + placeholder: | |
| 112 | + Related issues: #... |
| 113 | + |
| 114 | + Similar features in other libraries: |
| 115 | + - ... |
| 116 | + |
| 117 | + Additional context or examples: |
| 118 | + - ... |
0 commit comments