├── .gitignore ├── LICENSE ├── README.md ├── components ├── Chat │ ├── Chat.tsx │ └── index.tsx ├── Head │ ├── Head.tsx │ └── index.tsx └── Main │ ├── Main.tsx │ └── index.tsx ├── libs └── openai.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── pnpm-lock.yaml ├── postcss.config.js ├── public └── favicon.ico ├── reactflow.options.ts ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json ├── type.d.ts ├── types.d.ts └── utils.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/README.md -------------------------------------------------------------------------------- /components/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/components/Chat/Chat.tsx -------------------------------------------------------------------------------- /components/Chat/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Chat" 2 | -------------------------------------------------------------------------------- /components/Head/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/components/Head/Head.tsx -------------------------------------------------------------------------------- /components/Head/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Head" 2 | -------------------------------------------------------------------------------- /components/Main/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/components/Main/Main.tsx -------------------------------------------------------------------------------- /components/Main/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Main" 2 | -------------------------------------------------------------------------------- /libs/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/libs/openai.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /reactflow.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/reactflow.options.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/type.d.ts -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- 1 | export type Response = { status?: number; message?: string } | T 2 | -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abielzulio/flowchat/HEAD/utils.ts --------------------------------------------------------------------------------