├── .env.example ├── .gitignore ├── .gitpod.yml ├── README.md ├── components ├── Footer.tsx ├── GitHub.tsx ├── Header.tsx ├── LoadingDots.tsx └── ResizablePanel.tsx ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── prompt.ts │ ├── qa.ts │ └── sync.ts └── index.tsx ├── postcss.config.js ├── public ├── 1-black.png ├── 2-black.png ├── analytics.png ├── favicon.ico ├── og-image.png ├── screenshot.png ├── vercel.svg ├── vercelLogo.png └── writingIcon.png ├── styles ├── globals.css └── loading-dots.module.css ├── tailwind.config.js ├── tsconfig.json └── utils ├── OpenAIStream.ts └── hacks.ts /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/README.md -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/components/GitHub.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/LoadingDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/components/LoadingDots.tsx -------------------------------------------------------------------------------- /components/ResizablePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/components/ResizablePanel.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/pages/api/prompt.ts -------------------------------------------------------------------------------- /pages/api/qa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/pages/api/qa.ts -------------------------------------------------------------------------------- /pages/api/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/pages/api/sync.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/1-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/1-black.png -------------------------------------------------------------------------------- /public/2-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/2-black.png -------------------------------------------------------------------------------- /public/analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/analytics.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/vercelLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/vercelLogo.png -------------------------------------------------------------------------------- /public/writingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/public/writingIcon.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/styles/loading-dots.module.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/OpenAIStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/utils/OpenAIStream.ts -------------------------------------------------------------------------------- /utils/hacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-github/HEAD/utils/hacks.ts --------------------------------------------------------------------------------