Добавлен сервис AI

Добавлен ai агент для формирования и проверки статистики
Добавлен ai агент для поддержки
This commit is contained in:
brusnitsyn
2026-07-20 16:58:21 +09:00
parent 6350159943
commit a9e032f658
21 changed files with 1546 additions and 4 deletions

View File

@@ -7,10 +7,14 @@ import Noise from "../Components/Noise.vue";
import { useThemeVars } from "naive-ui";
import { computed } from "vue";
import Tour from "../Components/Tour/Tour.vue";
import AiAskWidget from "../Components/Ai/AiAskWidget.vue";
import { usePage } from "@inertiajs/vue3";
const {isGlobalLoading} = useGlobalLoading()
const themeVars = useThemeVars()
const pageProps = usePage().props
const blobBg = computed(() => {
const p = themeVars.value.primaryColor
const w = themeVars.value.warningColor
@@ -92,6 +96,7 @@ const blobBg = computed(() => {
</NLayout>
</NLayout>
<AiAskWidget :period-start="pageProps.date ? pageProps.date[0] : null" :period-end="pageProps.date ? pageProps.date[1] : null" />
<Tour />
</template>