share.ts 354 B

12345678910111213141516171819
  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. description: string
  12. default_language: Locale
  13. prompt_public: boolean
  14. copyright?: string
  15. privacy_policy?: string
  16. }