feat: Add export/import functions for chat history, promt and knowledge

This commit is contained in:
n4ze3m
2024-05-08 13:42:59 +05:30
parent 11147fd951
commit 677aa6ef51
11 changed files with 159 additions and 22 deletions

View File

@@ -0,0 +1,8 @@
import { Tag } from "antd"
import { useTranslation } from "react-i18next"
export const BetaTag = () => {
const { t } = useTranslation("common")
return <Tag color="yellow">{t("beta")}</Tag>
}