
ChatGPT 3.5
-
574 |
575 |
598 |
599 |
600 |
615 |
616 |
617 |
635 |
636 |
├── Procfile
├── public
└── favicon.ico
├── screenshot
├── qq.jpg
├── chatview.png
├── pdf view.png
├── screenshot.png
├── mobile view.png
├── api screenshot.png
├── doc screenshot.png
└── mobile chat list view.png
├── src
├── assets
│ ├── user.png
│ ├── chatgpt.jpg
│ ├── main.css
│ ├── base.css
│ ├── signin-img-cyan.svg
│ └── material-design-iconic-font.min.css
├── App.vue
├── components
│ ├── icons
│ │ ├── IconSupport.vue
│ │ ├── IconTooling.vue
│ │ ├── IconCommunity.vue
│ │ ├── IconDocumentation.vue
│ │ └── IconEcosystem.vue
│ ├── HelloWorld.vue
│ ├── WelcomeItem.vue
│ └── TheWelcome.vue
├── views
│ ├── DocView.vue
│ ├── hooks
│ │ └── useScroll.ts
│ ├── signin
│ │ └── index.vue
│ ├── signup
│ │ └── index.vue
│ └── ChatView.vue
├── main.ts
├── router
│ └── index.ts
└── typings
│ └── openai.d.ts
├── .env_example
├── tsconfig.json
├── env.d.ts
├── tsconfig.app.json
├── tsconfig.node.json
├── .gitignore
├── index.html
├── vite.config.ts
├── package.json
├── .devcontainer
└── devcontainer.json
├── README.zh.md
├── README.md
└── LICENSE
/Procfile:
--------------------------------------------------------------------------------
1 | web: npm run dev
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/public/favicon.ico
--------------------------------------------------------------------------------
/screenshot/qq.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/qq.jpg
--------------------------------------------------------------------------------
/src/assets/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/src/assets/user.png
--------------------------------------------------------------------------------
/screenshot/chatview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/chatview.png
--------------------------------------------------------------------------------
/screenshot/pdf view.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/pdf view.png
--------------------------------------------------------------------------------
/src/assets/chatgpt.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/src/assets/chatgpt.jpg
--------------------------------------------------------------------------------
/screenshot/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/screenshot.png
--------------------------------------------------------------------------------
/screenshot/mobile view.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/mobile view.png
--------------------------------------------------------------------------------
/screenshot/api screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/api screenshot.png
--------------------------------------------------------------------------------
/screenshot/doc screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/doc screenshot.png
--------------------------------------------------------------------------------
/screenshot/mobile chat list view.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gytai/chatgpt-ui/main/screenshot/mobile chat list view.png
--------------------------------------------------------------------------------
/src/App.vue:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
70 |
--------------------------------------------------------------------------------
/src/components/WelcomeItem.vue:
--------------------------------------------------------------------------------
1 |
2 |
87 |
--------------------------------------------------------------------------------
/src/views/signup/index.vue:
--------------------------------------------------------------------------------
1 |
48 |
49 | Create your free Account
58 | 68 |Already have an account? 69 | Sign in.
70 |README.md.
42 | 