├── .gitignore ├── LICENSE ├── README.md ├── app ├── api │ ├── assistant │ │ └── route.js │ ├── route.js │ └── storeID │ │ └── route.js ├── create │ └── [assistantId] │ │ └── page.js ├── embed │ └── [assistantId] │ │ └── page.js ├── favicon.ico ├── globals.css ├── layout.js └── page.js ├── components └── MainComponent.js ├── db.json ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── assistant.svg ├── back.svg ├── cancel.svg ├── home.svg ├── link.svg ├── refresh.svg └── send.svg └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/README.md -------------------------------------------------------------------------------- /app/api/assistant/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/api/assistant/route.js -------------------------------------------------------------------------------- /app/api/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/api/route.js -------------------------------------------------------------------------------- /app/api/storeID/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/api/storeID/route.js -------------------------------------------------------------------------------- /app/create/[assistantId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/create/[assistantId]/page.js -------------------------------------------------------------------------------- /app/embed/[assistantId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/embed/[assistantId]/page.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/layout.js -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/app/page.js -------------------------------------------------------------------------------- /components/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/components/MainComponent.js -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- 1 | {"openAIKey":"","assistants":{}} 2 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assistant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/assistant.svg -------------------------------------------------------------------------------- /public/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/back.svg -------------------------------------------------------------------------------- /public/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/cancel.svg -------------------------------------------------------------------------------- /public/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/home.svg -------------------------------------------------------------------------------- /public/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/link.svg -------------------------------------------------------------------------------- /public/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/refresh.svg -------------------------------------------------------------------------------- /public/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/public/send.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamurAIGPT/Open-Custom-GPT/HEAD/tailwind.config.js --------------------------------------------------------------------------------