├── .gitignore ├── README.md ├── components.json ├── lib ├── authOptions.ts └── prismaDb.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── logo.svg └── og.png ├── siteConfig.ts ├── src ├── app │ ├── AuthProvider.tsx │ ├── allModelsConfig.ts │ ├── api │ │ ├── [...model] │ │ │ └── route.ts │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── getRequests │ │ │ └── route.ts │ │ ├── getusers │ │ │ └── route.ts │ │ ├── joinfeed │ │ │ └── route.ts │ │ └── userAPI │ │ │ └── route.ts │ ├── assets │ │ ├── Inter-SemiBold.woff2 │ │ ├── TWKEverett-Medium-web.woff2 │ │ ├── globals.css │ │ └── soehne-buch.woff2 │ ├── components │ │ ├── AiCards.tsx │ │ ├── ApiUsageTable.tsx │ │ ├── CheckUser.tsx │ │ ├── Code.tsx │ │ ├── Demo.tsx │ │ ├── Feedback.tsx │ │ ├── JoinWaitlist.tsx │ │ ├── Loading.tsx │ │ ├── ModelSpecifications.tsx │ │ ├── Navbar.tsx │ │ ├── Notification.tsx │ │ ├── Profile.tsx │ │ ├── modes.tsx │ │ └── ui │ │ │ ├── alert-dialog.tsx │ │ │ ├── button.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── input.tsx │ │ │ ├── table.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ └── use-toast.ts │ ├── dashboard │ │ ├── layout.tsx │ │ └── page.tsx │ ├── docs │ │ └── [...models] │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── lib │ ├── model.ts │ └── utils.ts └── types │ └── next-auth.d.ts ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/components.json -------------------------------------------------------------------------------- /lib/authOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/lib/authOptions.ts -------------------------------------------------------------------------------- /lib/prismaDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/lib/prismaDb.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/public/og.png -------------------------------------------------------------------------------- /siteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/siteConfig.ts -------------------------------------------------------------------------------- /src/app/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/AuthProvider.tsx -------------------------------------------------------------------------------- /src/app/allModelsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/allModelsConfig.ts -------------------------------------------------------------------------------- /src/app/api/[...model]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/api/[...model]/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/getRequests/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/api/getRequests/route.ts -------------------------------------------------------------------------------- /src/app/api/getusers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/api/getusers/route.ts -------------------------------------------------------------------------------- /src/app/api/joinfeed/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/api/joinfeed/route.ts -------------------------------------------------------------------------------- /src/app/api/userAPI/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/api/userAPI/route.ts -------------------------------------------------------------------------------- /src/app/assets/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/assets/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/app/assets/TWKEverett-Medium-web.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/assets/TWKEverett-Medium-web.woff2 -------------------------------------------------------------------------------- /src/app/assets/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/assets/globals.css -------------------------------------------------------------------------------- /src/app/assets/soehne-buch.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/assets/soehne-buch.woff2 -------------------------------------------------------------------------------- /src/app/components/AiCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/AiCards.tsx -------------------------------------------------------------------------------- /src/app/components/ApiUsageTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ApiUsageTable.tsx -------------------------------------------------------------------------------- /src/app/components/CheckUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/CheckUser.tsx -------------------------------------------------------------------------------- /src/app/components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Code.tsx -------------------------------------------------------------------------------- /src/app/components/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Demo.tsx -------------------------------------------------------------------------------- /src/app/components/Feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Feedback.tsx -------------------------------------------------------------------------------- /src/app/components/JoinWaitlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/JoinWaitlist.tsx -------------------------------------------------------------------------------- /src/app/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Loading.tsx -------------------------------------------------------------------------------- /src/app/components/ModelSpecifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ModelSpecifications.tsx -------------------------------------------------------------------------------- /src/app/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Navbar.tsx -------------------------------------------------------------------------------- /src/app/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Notification.tsx -------------------------------------------------------------------------------- /src/app/components/Profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/Profile.tsx -------------------------------------------------------------------------------- /src/app/components/modes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/modes.tsx -------------------------------------------------------------------------------- /src/app/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/button.tsx -------------------------------------------------------------------------------- /src/app/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/app/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/input.tsx -------------------------------------------------------------------------------- /src/app/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/table.tsx -------------------------------------------------------------------------------- /src/app/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/app/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/app/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/docs/[...models]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/docs/[...models]/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/lib/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/lib/model.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axnjr/FreeAI/HEAD/tsconfig.json --------------------------------------------------------------------------------