├── .dockerignore ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ └── build-docker-image.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── demo-en.png ├── demo-zh.png ├── screenshots │ ├── screenshot-1-en.png │ ├── screenshot-1-zh.png │ ├── screenshot-2-en.png │ ├── screenshot-2-zh.png │ ├── screenshot-3-en.png │ └── screenshot-3-zh.png └── speechgpt-icon-text.svg ├── docs ├── README.zh.md ├── developer-guide.md └── developer-guide.zh.md ├── index.html ├── nginx.conf ├── package.json ├── postcss.config.cjs ├── public └── speechgpt.svg ├── src ├── App.tsx ├── apis │ ├── amazonPolly.ts │ ├── azureTTS.ts │ ├── azureToken.ts │ └── openai.ts ├── assets │ └── arrow-down.svg ├── components │ ├── AboutDialog.tsx │ ├── AppearanceSelector.tsx │ ├── AzureSpeechToText.tsx │ ├── BrowserSpeechToText.tsx │ ├── ButtonGroup.tsx │ ├── Content.tsx │ ├── ConversationPanel.tsx │ ├── Conversations │ │ ├── ConversationIcons.tsx │ │ ├── ConversationItem.tsx │ │ └── Sidebar.tsx │ ├── EllipsisMenu.tsx │ ├── Header.tsx │ ├── Icons │ │ ├── AboutIcon.tsx │ │ ├── BlubIcon.tsx │ │ ├── ChatIcon.tsx │ │ ├── HelpIcon.tsx │ │ ├── MicrophoneIcon.tsx │ │ ├── OKCircleIcon.tsx │ │ ├── RightTriangleIcon.tsx │ │ ├── SpeakerIcon.tsx │ │ ├── SpeechGPTIcon.tsx │ │ ├── SpinnerIcon.tsx │ │ ├── StartCircleIcon.tsx │ │ ├── StopCircleIcon.tsx │ │ ├── WarningIcon.tsx │ │ └── XIcon.tsx │ ├── InputPanel.tsx │ ├── LocaleSelector.tsx │ ├── MobileSettingsSelector.tsx │ ├── Notification.tsx │ ├── Record.tsx │ ├── Settings │ │ ├── ChatSection.tsx │ │ ├── PollyVoice.tsx │ │ ├── RecognitionSection.tsx │ │ ├── SettingContent.tsx │ │ ├── SettingDialog.tsx │ │ ├── SettingSelector.tsx │ │ ├── SynthesisSection.tsx │ │ ├── azureTtsVoice.tsx │ │ └── base │ │ │ ├── SettingCheckText.tsx │ │ │ ├── SettingDivider.tsx │ │ │ ├── SettingGroup.tsx │ │ │ ├── SettingInput.tsx │ │ │ ├── SettingSelect.tsx │ │ │ ├── SettingSlider.tsx │ │ │ ├── SettingSubtitle.tsx │ │ │ ├── SettingSwitch.tsx │ │ │ ├── SettingTextArea.tsx │ │ │ ├── SettingTitle.tsx │ │ │ └── SettingWarningText.tsx │ ├── Tips.tsx │ └── base │ │ ├── Button.tsx │ │ ├── Dialog.tsx │ │ ├── DropdownMenu.tsx │ │ ├── Input.tsx │ │ ├── RangeSlider.tsx │ │ ├── Select.tsx │ │ ├── Textarea.tsx │ │ ├── TippyButton.tsx │ │ └── Toggle.tsx ├── constants │ └── data.ts ├── css │ └── index.css ├── db │ ├── chat.ts │ └── index.ts ├── helpers │ ├── markdown │ │ ├── index.tsx │ │ ├── matcher.ts │ │ └── parser │ │ │ ├── Blockquote.tsx │ │ │ ├── Bold.tsx │ │ │ ├── BoldEmphasis.tsx │ │ │ ├── Br.tsx │ │ │ ├── CodeBlock.tsx │ │ │ ├── DoneList.tsx │ │ │ ├── Emphasis.tsx │ │ │ ├── Heading.tsx │ │ │ ├── HorizontalRules.tsx │ │ │ ├── Image.tsx │ │ │ ├── InlineCode.tsx │ │ │ ├── Link.tsx │ │ │ ├── OrderedList.tsx │ │ │ ├── Paragraph.tsx │ │ │ ├── PlainLink.tsx │ │ │ ├── PlainText.tsx │ │ │ ├── Strikethrough.tsx │ │ │ ├── Table.tsx │ │ │ ├── Tag.tsx │ │ │ ├── TodoList.tsx │ │ │ ├── UnorderedList.tsx │ │ │ └── index.ts │ └── utils.ts ├── i18n.ts ├── locales │ ├── en.json │ ├── es.json │ └── zh-CN.json ├── main.tsx ├── pages │ ├── Home.tsx │ └── NotFound.tsx ├── store │ ├── index.ts │ ├── module │ │ ├── global.ts │ │ ├── index.ts │ │ └── session.ts │ └── reducer │ │ ├── global.ts │ │ └── session.ts ├── typings │ ├── chat.d.ts │ ├── env.d.ts │ ├── global.d.ts │ └── session.d.ts ├── utils │ ├── speechSynthesis.ts │ └── version.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.github/workflows/build-docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/demo-en.png -------------------------------------------------------------------------------- /assets/demo-zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/demo-zh.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-1-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/screenshots/screenshot-1-en.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-1-zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/screenshots/screenshot-1-zh.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-2-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/screenshots/screenshot-2-en.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-2-zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/screenshots/screenshot-2-zh.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-3-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/screenshots/screenshot-3-en.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-3-zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/screenshots/screenshot-3-zh.png -------------------------------------------------------------------------------- /assets/speechgpt-icon-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/assets/speechgpt-icon-text.svg -------------------------------------------------------------------------------- /docs/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/docs/README.zh.md -------------------------------------------------------------------------------- /docs/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/docs/developer-guide.md -------------------------------------------------------------------------------- /docs/developer-guide.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/docs/developer-guide.zh.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/index.html -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/speechgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/public/speechgpt.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/apis/amazonPolly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/apis/amazonPolly.ts -------------------------------------------------------------------------------- /src/apis/azureTTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/apis/azureTTS.ts -------------------------------------------------------------------------------- /src/apis/azureToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/apis/azureToken.ts -------------------------------------------------------------------------------- /src/apis/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/apis/openai.ts -------------------------------------------------------------------------------- /src/assets/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/assets/arrow-down.svg -------------------------------------------------------------------------------- /src/components/AboutDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/AboutDialog.tsx -------------------------------------------------------------------------------- /src/components/AppearanceSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/AppearanceSelector.tsx -------------------------------------------------------------------------------- /src/components/AzureSpeechToText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/AzureSpeechToText.tsx -------------------------------------------------------------------------------- /src/components/BrowserSpeechToText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/BrowserSpeechToText.tsx -------------------------------------------------------------------------------- /src/components/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/ButtonGroup.tsx -------------------------------------------------------------------------------- /src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Content.tsx -------------------------------------------------------------------------------- /src/components/ConversationPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/ConversationPanel.tsx -------------------------------------------------------------------------------- /src/components/Conversations/ConversationIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Conversations/ConversationIcons.tsx -------------------------------------------------------------------------------- /src/components/Conversations/ConversationItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Conversations/ConversationItem.tsx -------------------------------------------------------------------------------- /src/components/Conversations/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Conversations/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/EllipsisMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/EllipsisMenu.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Icons/AboutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/AboutIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/BlubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/BlubIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/ChatIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/ChatIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/HelpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/HelpIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/MicrophoneIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/MicrophoneIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/OKCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/OKCircleIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/RightTriangleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/RightTriangleIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/SpeakerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/SpeakerIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/SpeechGPTIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/SpeechGPTIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/SpinnerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/SpinnerIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/StartCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/StartCircleIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/StopCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/StopCircleIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/WarningIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/WarningIcon.tsx -------------------------------------------------------------------------------- /src/components/Icons/XIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Icons/XIcon.tsx -------------------------------------------------------------------------------- /src/components/InputPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/InputPanel.tsx -------------------------------------------------------------------------------- /src/components/LocaleSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/LocaleSelector.tsx -------------------------------------------------------------------------------- /src/components/MobileSettingsSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/MobileSettingsSelector.tsx -------------------------------------------------------------------------------- /src/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Notification.tsx -------------------------------------------------------------------------------- /src/components/Record.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Record.tsx -------------------------------------------------------------------------------- /src/components/Settings/ChatSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/ChatSection.tsx -------------------------------------------------------------------------------- /src/components/Settings/PollyVoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/PollyVoice.tsx -------------------------------------------------------------------------------- /src/components/Settings/RecognitionSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/RecognitionSection.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/SettingContent.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/SettingDialog.tsx -------------------------------------------------------------------------------- /src/components/Settings/SettingSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/SettingSelector.tsx -------------------------------------------------------------------------------- /src/components/Settings/SynthesisSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/SynthesisSection.tsx -------------------------------------------------------------------------------- /src/components/Settings/azureTtsVoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/azureTtsVoice.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingCheckText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingCheckText.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingDivider.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingGroup.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingInput.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingSelect.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingSlider.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingSubtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingSubtitle.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingSwitch.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingTextArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingTextArea.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingTitle.tsx -------------------------------------------------------------------------------- /src/components/Settings/base/SettingWarningText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Settings/base/SettingWarningText.tsx -------------------------------------------------------------------------------- /src/components/Tips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/Tips.tsx -------------------------------------------------------------------------------- /src/components/base/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/Button.tsx -------------------------------------------------------------------------------- /src/components/base/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/Dialog.tsx -------------------------------------------------------------------------------- /src/components/base/DropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/DropdownMenu.tsx -------------------------------------------------------------------------------- /src/components/base/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/Input.tsx -------------------------------------------------------------------------------- /src/components/base/RangeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/RangeSlider.tsx -------------------------------------------------------------------------------- /src/components/base/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/Select.tsx -------------------------------------------------------------------------------- /src/components/base/Textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/Textarea.tsx -------------------------------------------------------------------------------- /src/components/base/TippyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/TippyButton.tsx -------------------------------------------------------------------------------- /src/components/base/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/components/base/Toggle.tsx -------------------------------------------------------------------------------- /src/constants/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/constants/data.ts -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/css/index.css -------------------------------------------------------------------------------- /src/db/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/db/chat.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/helpers/markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/index.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/matcher.ts -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Blockquote.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Bold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Bold.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/BoldEmphasis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/BoldEmphasis.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Br.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Br.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/CodeBlock.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/DoneList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/DoneList.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Emphasis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Emphasis.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Heading.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/HorizontalRules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/HorizontalRules.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Image.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/InlineCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/InlineCode.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Link.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/OrderedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/OrderedList.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Paragraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Paragraph.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/PlainLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/PlainLink.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/PlainText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/PlainText.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Strikethrough.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Strikethrough.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Table.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/Tag.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/TodoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/TodoList.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/UnorderedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/UnorderedList.tsx -------------------------------------------------------------------------------- /src/helpers/markdown/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/markdown/parser/index.ts -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/locales/es.json -------------------------------------------------------------------------------- /src/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/locales/zh-CN.json -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/pages/Home.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/module/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/store/module/global.ts -------------------------------------------------------------------------------- /src/store/module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/store/module/index.ts -------------------------------------------------------------------------------- /src/store/module/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/store/module/session.ts -------------------------------------------------------------------------------- /src/store/reducer/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/store/reducer/global.ts -------------------------------------------------------------------------------- /src/store/reducer/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/store/reducer/session.ts -------------------------------------------------------------------------------- /src/typings/chat.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/typings/chat.d.ts -------------------------------------------------------------------------------- /src/typings/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/typings/env.d.ts -------------------------------------------------------------------------------- /src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/typings/global.d.ts -------------------------------------------------------------------------------- /src/typings/session.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/typings/session.d.ts -------------------------------------------------------------------------------- /src/utils/speechSynthesis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/utils/speechSynthesis.ts -------------------------------------------------------------------------------- /src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/src/utils/version.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hahahumble/speechgpt/HEAD/yarn.lock --------------------------------------------------------------------------------