├── .gitignore ├── .prettierrc ├── global.css ├── next.config.mjs ├── package.json ├── pages ├── _app.js └── index.mdx ├── public ├── card.png └── favicon.ico ├── readme.md ├── snippets ├── assistant.js ├── base.js ├── choices.js ├── function-role.js ├── functions.js ├── maxtokens.js ├── start.js ├── stop.js ├── stream.js └── structured-data.js ├── theme.mjs └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false 3 | } 4 | -------------------------------------------------------------------------------- /global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/global.css -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /public/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/public/card.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/readme.md -------------------------------------------------------------------------------- /snippets/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/assistant.js -------------------------------------------------------------------------------- /snippets/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/base.js -------------------------------------------------------------------------------- /snippets/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/choices.js -------------------------------------------------------------------------------- /snippets/function-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/function-role.js -------------------------------------------------------------------------------- /snippets/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/functions.js -------------------------------------------------------------------------------- /snippets/maxtokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/maxtokens.js -------------------------------------------------------------------------------- /snippets/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/start.js -------------------------------------------------------------------------------- /snippets/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/stop.js -------------------------------------------------------------------------------- /snippets/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/stream.js -------------------------------------------------------------------------------- /snippets/structured-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/snippets/structured-data.js -------------------------------------------------------------------------------- /theme.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/theme.mjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomber/gpt-docs/HEAD/yarn.lock --------------------------------------------------------------------------------