share.ts 395 B

123456789101112131415161718192021
  1. import { Locale } from '@/i18n'
  2. export type ResponseHolder = {}
  3. export type ConversationItem = {
  4. id: string
  5. name: string
  6. inputs: Record<string, any> | null
  7. introduction: string,
  8. }
  9. export type SiteInfo = {
  10. title: string
  11. icon: string
  12. icon_background: string
  13. description: string
  14. default_language: Locale
  15. prompt_public: boolean
  16. copyright?: string
  17. privacy_policy?: string
  18. }