├── .github ├── screenshot.png └── workflows │ ├── index.yaml │ ├── reset_index.yaml │ └── sync_template.yaml ├── .gitignore ├── .gitpod.yml ├── LICENSE ├── README.md ├── components ├── counters.module.css └── counters.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _meta.json ├── about.mdx ├── advanced.mdx ├── advanced │ └── satori.mdx ├── another.mdx ├── api │ ├── buildPrompt.ts │ └── qa.ts ├── index.mdx └── markdown.mdx ├── pnpm-lock.yaml ├── scripts ├── clear.js └── sync.js ├── theme.config.tsx ├── tsconfig.json └── utils └── OpenAIStream.ts /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.github/workflows/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/.github/workflows/index.yaml -------------------------------------------------------------------------------- /.github/workflows/reset_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/.github/workflows/reset_index.yaml -------------------------------------------------------------------------------- /.github/workflows/sync_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/.github/workflows/sync_template.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | .env -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/README.md -------------------------------------------------------------------------------- /components/counters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/components/counters.module.css -------------------------------------------------------------------------------- /components/counters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/components/counters.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/package.json -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/about.mdx -------------------------------------------------------------------------------- /pages/advanced.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/advanced.mdx -------------------------------------------------------------------------------- /pages/advanced/satori.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/advanced/satori.mdx -------------------------------------------------------------------------------- /pages/another.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/another.mdx -------------------------------------------------------------------------------- /pages/api/buildPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/api/buildPrompt.ts -------------------------------------------------------------------------------- /pages/api/qa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/api/qa.ts -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /pages/markdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pages/markdown.mdx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/scripts/clear.js -------------------------------------------------------------------------------- /scripts/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/scripts/sync.js -------------------------------------------------------------------------------- /theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/theme.config.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/OpenAIStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/different-ai/chat-gpt-powered-nextra/HEAD/utils/OpenAIStream.ts --------------------------------------------------------------------------------