├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── screenshot.png ├── src └── app │ ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── process │ │ └── route.ts │ ├── result │ │ └── route.ts │ ├── status │ │ └── route.ts │ └── summarize │ │ └── route.ts │ ├── auth │ └── signin │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── providers.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/public/window.svg -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/process/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/api/process/route.ts -------------------------------------------------------------------------------- /src/app/api/result/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/api/result/route.ts -------------------------------------------------------------------------------- /src/app/api/status/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/api/status/route.ts -------------------------------------------------------------------------------- /src/app/api/summarize/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/api/summarize/route.ts -------------------------------------------------------------------------------- /src/app/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/auth/signin/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/run-llama/llamaextract-10k-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------