├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── eslint.config.js ├── index.html ├── module.d.ts ├── package.json ├── public ├── arrow.svg ├── logo.svg └── providers │ ├── fireworks-ai.svg │ ├── hyperbolic.svg │ ├── nebius.svg │ ├── novita.svg │ └── sambanova.svg ├── server.js ├── services └── openai.js ├── src ├── assets │ ├── deepseek-color.svg │ ├── index.css │ ├── logo.svg │ ├── space.svg │ └── success.mp3 ├── components │ ├── App.tsx │ ├── ask-ai │ │ └── ask-ai.tsx │ ├── header │ │ └── header.tsx │ ├── loading │ │ └── loading.tsx │ ├── preview │ │ └── preview.tsx │ ├── speech-prompt │ │ └── speech-prompt.tsx │ └── tabs │ │ └── tabs.tsx ├── main.tsx └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── utils ├── consts.ts └── types.ts └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/index.html -------------------------------------------------------------------------------- /module.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-speech-recognition"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/package.json -------------------------------------------------------------------------------- /public/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/arrow.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/providers/fireworks-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/providers/fireworks-ai.svg -------------------------------------------------------------------------------- /public/providers/hyperbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/providers/hyperbolic.svg -------------------------------------------------------------------------------- /public/providers/nebius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/providers/nebius.svg -------------------------------------------------------------------------------- /public/providers/novita.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/providers/novita.svg -------------------------------------------------------------------------------- /public/providers/sambanova.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/public/providers/sambanova.svg -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/server.js -------------------------------------------------------------------------------- /services/openai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/services/openai.js -------------------------------------------------------------------------------- /src/assets/deepseek-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/assets/deepseek-color.svg -------------------------------------------------------------------------------- /src/assets/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/assets/index.css -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/assets/space.svg -------------------------------------------------------------------------------- /src/assets/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/assets/success.mp3 -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/ask-ai/ask-ai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/ask-ai/ask-ai.tsx -------------------------------------------------------------------------------- /src/components/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/header/header.tsx -------------------------------------------------------------------------------- /src/components/loading/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/loading/loading.tsx -------------------------------------------------------------------------------- /src/components/preview/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/preview/preview.tsx -------------------------------------------------------------------------------- /src/components/speech-prompt/speech-prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/speech-prompt/speech-prompt.tsx -------------------------------------------------------------------------------- /src/components/tabs/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/components/tabs/tabs.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /utils/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/utils/consts.ts -------------------------------------------------------------------------------- /utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/utils/types.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBcui/DeepSite-OpenAI/HEAD/vite.config.ts --------------------------------------------------------------------------------