2024-01-08 18:06:23 +08:00
|
|
|
import type { Locale } from '@/i18n'
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
export type ResponseHolder = {}
|
|
|
|
|
|
|
|
export type ConversationItem = {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
inputs: Record<string, any> | null
|
2024-01-08 18:06:23 +08:00
|
|
|
introduction: string
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type SiteInfo = {
|
|
|
|
title: string
|
2023-05-19 17:36:44 +08:00
|
|
|
icon: string
|
|
|
|
icon_background: string
|
2023-05-15 08:51:32 +08:00
|
|
|
description: string
|
|
|
|
default_language: Locale
|
|
|
|
prompt_public: boolean
|
|
|
|
copyright?: string
|
|
|
|
privacy_policy?: string
|
2024-01-08 18:06:23 +08:00
|
|
|
}
|
2024-01-23 19:31:56 +08:00
|
|
|
|
|
|
|
export type AppMeta = {
|
|
|
|
tool_icons: Record<string, string>
|
|
|
|
}
|