mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
chore(github): fixed
This commit is contained in:
parent
40552aef28
commit
2fc6e7e38b
42
.github/ISSUE_TEMPLATE/EPIC_TEMPLATE.md
vendored
42
.github/ISSUE_TEMPLATE/EPIC_TEMPLATE.md
vendored
@ -1,45 +1,3 @@
|
|||||||
---
|
|
||||||
name: [Only Quivr Team] Epic
|
|
||||||
about: Use this template for epics.
|
|
||||||
title: "[Epic]"
|
|
||||||
labels: epic
|
|
||||||
---
|
|
||||||
|
|
||||||
# The why
|
|
||||||
|
|
||||||
Why do we need this functionality?
|
|
||||||
What’s the value? For whom?
|
|
||||||
|
|
||||||
# The what
|
|
||||||
|
|
||||||
## What are we developing?
|
|
||||||
|
|
||||||
What’s the expected behaviour? How should it look like?
|
|
||||||
|
|
||||||
## What are the validation criteria to validate this feature?
|
|
||||||
|
|
||||||
What are you going to test to validate this feature? What are the edge cases? How should the feature behave in case of error ? How should the feature behave in case of missing data ? Are there other specific behaviours that should be clarified?
|
|
||||||
|
|
||||||
## What’s out of scope for this feature?
|
|
||||||
|
|
||||||
## Should this feature be feature flagged?
|
|
||||||
|
|
||||||
# The how
|
|
||||||
|
|
||||||
## How are we going to code this feature?
|
|
||||||
|
|
||||||
What’s the technical strategy to deliver? What are the impacts on the architecture diagram? What could be the unexpected consequences of the feature on other parts of the code? Could there be other technical edge cases?
|
|
||||||
|
|
||||||
## Are there any technical decisions made that should be shared?
|
|
||||||
|
|
||||||
Did you make any ADR for this feature that should be shared and validated?
|
|
||||||
|
|
||||||
## What is preventing us from delivering this feature?
|
|
||||||
|
|
||||||
Are there functional dependencies? Are there métier dependencies? Are there internal teams that need to be consulted/need to validate
|
|
||||||
|
|
||||||
## What can the feature potentially break?
|
|
||||||
|
|
||||||
name: [Only Quivr Team] Epic
|
name: [Only Quivr Team] Epic
|
||||||
description: Use this form for epics.
|
description: Use this form for epics.
|
||||||
title: "[Epic]: "
|
title: "[Epic]: "
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
"use client";
|
"use client";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { MdAddCircle, MdSend } from "react-icons/md";
|
import { MdCloudUpload, MdSend } from "react-icons/md";
|
||||||
|
|
||||||
import Button from "@/lib/components/ui/Button";
|
import Button from "@/lib/components/ui/Button";
|
||||||
import { useBrainContext } from "@/lib/context/BrainProvider/hooks/useBrainContext";
|
import { useBrainContext } from "@/lib/context/BrainProvider/hooks/useBrainContext";
|
||||||
@ -49,7 +49,7 @@ export const ChatInput = ({
|
|||||||
onClick={() => setShouldDisplayUploadCard(true)}
|
onClick={() => setShouldDisplayUploadCard(true)}
|
||||||
tooltip={t("add_content_card_button_tooltip")}
|
tooltip={t("add_content_card_button_tooltip")}
|
||||||
>
|
>
|
||||||
<MdAddCircle className="text-3xl" />
|
<MdCloudUpload className="text-3xl" />
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user