├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── README.md ├── lib ├── components │ ├── Appbar.jsx │ ├── Input.jsx │ ├── Line.jsx │ ├── ScrollToBottom.jsx │ ├── SocialPanel.jsx │ └── Tips.jsx ├── icons │ └── SendIcon.js └── utils │ └── useChatProps.js ├── package.json ├── pages ├── _document.js ├── api │ └── generate.js └── index.js ├── public ├── chatgpt.png └── index.css └── screenshot.png /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /lib/components/Appbar.jsx: -------------------------------------------------------------------------------- 1 | export const Appbar = () => {}; 2 | -------------------------------------------------------------------------------- /lib/components/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/components/Input.jsx -------------------------------------------------------------------------------- /lib/components/Line.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/components/Line.jsx -------------------------------------------------------------------------------- /lib/components/ScrollToBottom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/components/ScrollToBottom.jsx -------------------------------------------------------------------------------- /lib/components/SocialPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/components/SocialPanel.jsx -------------------------------------------------------------------------------- /lib/components/Tips.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/components/Tips.jsx -------------------------------------------------------------------------------- /lib/icons/SendIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/icons/SendIcon.js -------------------------------------------------------------------------------- /lib/utils/useChatProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/lib/utils/useChatProps.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/package.json -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/api/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/pages/api/generate.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/pages/index.js -------------------------------------------------------------------------------- /public/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/public/chatgpt.png -------------------------------------------------------------------------------- /public/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/public/index.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TristanWYL/FreeChatGPT/HEAD/screenshot.png --------------------------------------------------------------------------------